I have this excel file that I've downloaded from here and I want to read it into a pandas dataframe. If I open the file in Excel, it opens fine, no passwords asked, but if I try to modify it, it does ask for a password. If I try to open the file on pandas with the following code instead:
data_inctl = pd.read_excel(
INCTL_DATA_PATH,
sheet_name="Serie Histórica"
)
It gives me the following error:
XLRDError: Workbook is encrypted
I tried some of the solutions found here but I do not have a password for the file so none of them work.
The data itself is not encrypted since I can open it fine on excel. I can also copy and paste the data into another file from Excel without a problem, but that would not allow me to automate my ETL. Is there a way that I could get this data into a pandas dataframe, even though the file is protected from modification?