We Want to Hear From You! What Do You Want to See on the Community? Tell us here!
Forum Discussion
YevhenRadchenko
7 years agoNew member | Level 2
Incorrect type expected on upload [ Python ]
So Im trying to upload some multiple files using API, but in the end I just getting
dropbox.stone_validators.ValidationError: '<_io.BufferedReader name='./image_01.jpg'>' expected to be a string, got BufferedReader
My code:
def image_uploader(filename): filename_lower = filename.lower() for ignored_file in IGNORED_FILES: if ignored_file in filename_lower: return True return False local_dir = '.' dbx_token = dropbox.Dropbox('MY_API_TOKEN') for root, dirs, files in os.walk(local_dir): for file_name in files: if image_uploader(file_name): continue local_path = os.path.join(root, file_name) relative_path = os.path.relpath(local_path, local_dir) dropbox_path = os.path.join('/Apps/face_db_upload', relative_path) with open(local_path, 'rb') as f: dbx_token.files_upload(dropbox_path, f)
1 Reply
- Greg-DB7 years ago
Dropbox Community Moderator
The files_upload method expects a string, but you're passing in a file object. You'll need to update your code to pass in a string, e.g., try passing in `f.read()` instead of `f`.
About Discuss Dropbox Developer & API
Make connections with other developers814 PostsLatest Activity: 2 years ago
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 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!