search
Search
Login
Unlock 100+ guides
menu
menu
web
search toc
close
Outline
Comments
Log in or sign up
Cancel
Post
account_circle
Profile
exit_to_app
Sign out
What does this mean?
Why is this true?
Give me some examples!
search
keyboard_voice
close
Searching Tips
Search for a recipe:
"Creating a table in MySQL"
Search for an API documentation: "@append"
Search for code: "!dataframe"
Apply a tag filter: "#python"
Useful Shortcuts
/ to open search panel
Esc to close search panel
to navigate between search results
d to clear all current filters
Enter to expand content preview
icon_star
Doc Search
icon_star
Code Search Beta
SORRY NOTHING FOUND!
mic
Start speaking...
Voice search is only supported in Safari and Chrome.
Navigate to

How to solve the error "AttributeError: 'str' object has no attribute 'tell'" when uploading files on Google Cloud Storage in Python

schedule Aug 11, 2023
Last updated
local_offer
Cloud Computing
Tags
tocTable of Contents
expand_more
mode_heat
Master the mathematics behind data science with 100+ top-tier guides
Start your free 7-days trial now!

We encounter this error when we try to write a file to Google Cloud Storage (GCS) in Python like so:

from google.cloud import storage

path_to_private_key = './gcs-project-354207-099ef6796af6.json'
client = storage.Client.from_service_account_json(json_credentials_path=path_to_private_key)
bucket = client.get_bucket('example-bucket-skytowner')
blob = bucket.blob('uploaded_sample.txt')
blob.upload_from_file('./sample.txt')
AttributeError: 'str' object has no attribute 'tell'

Here, the highlighted line is causing the error.

The fix is to use the method upload_from_filename(~) instead which expects the path of the file you wish to upload on GCS:

blob.upload_from_filename('./sample.txt')

On the other hand, the method upload_from_file(~) expects a file object, which can be obtained like so:

with open('./sample.txt', 'rb') as file:
blob.upload_from_file(file)

Here, the second parameter 'rb' means that we wish to read the file in binary format, which is what the upload_from_file(~) method expects.

robocat
Published by Isshin Inada
Edited by 0 others
Did you find this page useful?
thumb_up
thumb_down
Comment
Citation
Ask a question or leave a feedback...
thumb_up
0
thumb_down
0
chat_bubble_outline
0
settings
Enjoy our search
Hit / to insta-search docs and recipes!