We’re Still Here to Help (Even Over the Holidays!) - find out more here.
Forum Discussion
ankg
6 years agoNew member | Level 2
databricks pyspark/ python download data from shared url and password
Hi,
I have received a dropbox shared secure link and password which I want to connect to my databricks environment so that I can download the files from dropbox to my databricks environment.
Appreciate if someone can share an example code to do that. I have a dropbox url and password.
Thanks!
1 Reply
- Greg-DB6 years ago
Dropbox Community Moderator
We can't offer help on the Databricks/Pyspark side of this, as that's made by a third party, but to programmatically download file data from a password-protected Dropbox shared link, we recommend using the official Dropbox API v2 Python SDK. Specifically, you can use the sharing_get_shared_link_file method to download file data from a shared link, optionally supplying the password if needed.
That would look like this:
import dropbox ACCESS_TOKEN = "..." dbx = dropbox.Dropbox(ACCESS_TOKEN) shared_link = "https://www.dropbox.com/s/..." password = "..." metadata, res = dbx.sharing_get_shared_link_file(url=shared_link, link_password=password) print(metadata) print(res.text)
The second variable in the returned tuple is a requests.Response object, which offers a few methods for reading out the file content.
About Dropbox API Support & Feedback
Find help with the Dropbox API from other developers.
The Dropbox Community team is active from Monday to Friday. We try to respond to you as soon as we can, usually within 2 hours.
If 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, Facebook or Instagram.
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!