I want to get the links to a (big) number of files in my Dropbox folder, in Python,I'm a bit overwhelmed with the API documentation. What's the best way to do this?
https://www.dropbox.com/developers/core/docs/python#DropboxClient.share
If you have a DropboxClient object called client, then it's just print client.share('/myfile.txt', short_url=False).
DropboxClient
client
print client.share('/myfile.txt', short_url=False)
If you're having trouble getting the DropboxClient set up in the first place, take a look at the https://www.dropbox.com/developers/core/start/python.