I am fetching data from the exchange and storing it into an excel sheet & reading using python script, which is working fine.
But to get the latest values I need to read excel file every 1 sec.
So my question is there any way to get an event whenever any column updates on excel?
If yes can you give me some link and or some sample code?
If no is there any way to optimize the reading the excel file?
Here is the my python code to read the file:
import pandas as pd
excel_loc = "/Users/usr/Downloads/Sample.xls"
pd_excel = pd.read_excel(excel_loc)
print(pd_excel['id']
Thanks in advance.