This is my first post. I want to read excel file in python 3 which is updating every second. this is what i have tried
>>> import pandas as pd
>>> import xlrd
>>> parsed=pd.read_excel(open("PATH TO FILE","rb"),sheet_name="Default")
>>> parsed
i always get same old data. Old Data
But not updated data, Updated Data
even if i call last statement again. Please help
I tried to open excel with read_excel after update of excel file but still getting old results.
I tried few things more and found that i was not able to get right result because excel was updated by server but not saved after each return. When i forcefully saved excel during updates. I got updated results. But how can i save automatically excel with each update?