Is this what you are looking for? blob has functions for loading from a file, loading to a file. With these features, you can do almost anything with GCS.
from google.cloud import storage client = storage.Client() bucket = client.get_bucket('bucket-name') blob = bucket.get_blob('path-to-file') data = blob.download_as_string()
some more functions, they still have
download_to_filename upload_from_file
source share