We are aware of the issue with the badge emails resending to everyone, we apologise for the inconvenience - learn more here.
Forum Discussion
fapb88ve
8 years agoExplorer | Level 4
Downloading a file from using the Python Dropbox API
Hello,
Sorry for the basic question. I'm updating the code I had for the V1 Python API and I'm having a trouble with the download function. Originally I used the following:
f, metadata = clie...
- 8 years ago
The files_download method is the closest to what you were using. The files_download_to_file method takes an extra parameter for saving the file locally for you.
So either of these should be equivalent to your old code:
metadata, f = dbx.files_download('/'+ j) out = open(j, 'wb') out.write(f.content) out.close()
or just
dbx.files_download_to_file(j, '/'+ j)
hosamsandid
New member | Level 2
what dose the letter j means??
Greg-DB
6 years agoDropbox Staff
hosamsandid The variable 'j' was used in the original code sample shared in this thread, but the definition of its value wasn't shown. In that context though, it would've just been a file name, like "example.jpg".
It was used both on the Dropbox API, formatted as "/example.jpg", for instance, and to open a local file.
About Dropbox API Support & Feedback
Find help with the Dropbox API from other developers.
5,877 PostsLatest Activity: 8 hours agoIf you need more help you can view your support options (expected response time for an email or ticket is 24 hours), or contact us on X or Facebook.
For more info on available support options for your Dropbox plan, see this article.
If you found the answer to your question in this Community thread, please 'like' the post to say thanks and to let us know it was useful!