Hello,
My python code has been working well for months. Within the past 48 hours, the files_download command in the snippet below (with tokens obfuscated) has started to take about 45 seconds while previously it was instantaneous. It is the last line that is the culprit.
import dropbox
DROPBOX_APP_KEY = "?????"
DROPBOX_APP_SECRET = "?????"
DROPBOX_REFRESH_TOKEN = "????"
dbx = dropbox.Dropbox(app_key=DROPBOX_APP_KEY,
app_secret=DROPBOX_APP_SECRET,
oauth2_refresh_token=DROPBOX_REFRESH_TOKEN)
metadata, f = dbx.files_download('/alerts.csv')
Any suggestions?
With thanks,
David