Hello,
I am trying to write a python script to automatically store an excel file in dropbox. My excel file is created from turning dataframes into excel sheets. This file has 5 sheets with a different dataframe on each sheet. The file size is less than 150 MB.
The file shows up in my specified folder, but shows an Error (415) and cannot be opened or download. The API gave no errors in my terminal when it ran.
Here is my code:
dbx.files_upload(output.read(), '/testfile3xlsx', mode=dropbox.files.WriteMode.overwrite)
where output is an excel sheet created using pd.ExcelWriter()
Thank you for your help!