xlwings error: pywintypes.com_error: (-2147352573, 'Member not found.', None, None)
问题 I have an Excel open which has RTD streaming data (financial data from a trading platform). My goal is read the data by Python and save it as soon as it changes. The goal is to capture every milisecond. I am using xlwings to read the cell value but usually after 50-100 attempts I got the same error. Any idea how to solve it? import xlwings as xw n_of_times_checked=0 while True: n_of_times_checked +=1 print("Cell value:",xw.Range("D41").value," Num of times checked:",n_of_times_checked) The