You might see that the Dropbox Community team have been busy working on some major updates to the Community itself! So, here is some info on what’s changed, what’s staying the same and what you can expect from the Dropbox Community overall.
Forum Discussion
OGMC
8 years agoHelpful | Level 6
Python metadata help
In V1 as metadata was returned in a dictionary all i had to do was myMeta.get("name") to get the name of an item for examle.
Whats the best way to get direct info in V2
Do i have to regex the metadata object to get name or content hash or is there better way?
I'm glad to hear you sorted this out already. Yes, you can directly access those fields like that, no regex necessary.
For anyone else looking for this, here's that sample cleaned up:
import dropbox dbx = dropbox.Dropbox("<ACCESS_TOKEN>") myDir = dbx.files_list_folder("") for item in myDir.entries: if isinstance(item, dropbox.files.FileMetadata): name = item.name fileID = item.id fileHash = item.content_hash print(name, fileID, fileHash)
- OGMCHelpful | Level 6
ok i think i sussed this.
so if i was was to do
myDir = dbx.files_list_folder() for item in myDir: if isinstance(item, dropbox.filemetadata): name = item.name fileID = item.id fileHash = item.content_hash
etc etc
- Greg-DBDropbox Staff
I'm glad to hear you sorted this out already. Yes, you can directly access those fields like that, no regex necessary.
For anyone else looking for this, here's that sample cleaned up:
import dropbox dbx = dropbox.Dropbox("<ACCESS_TOKEN>") myDir = dbx.files_list_folder("") for item in myDir.entries: if isinstance(item, dropbox.files.FileMetadata): name = item.name fileID = item.id fileHash = item.content_hash print(name, fileID, fileHash)
About Dropbox API Support & Feedback
Find help with the Dropbox API from other developers.
5,882 PostsLatest Activity: 11 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!