Hi there,
I get a malformed file when I try upload a simple excel file with python sdk
my code looks like:
xls = 'Path\\xxxxx.xlsx'
try:
with open(xls, 'r') as upxls:
dbx.files_upload(upxlsx.read(),'/test.xlsx', mode=dropbox.files.WriteMode("overwrite"))
except Exception as e:
print e
Is there a bug in my code or the dropbox python module?