A lightweight Python package to simplify Google Cloud Storage operations.
pip install git+https://github.com/DataSolveProblems/gcstorage.git
-
Create a Google Cloud Service Account
-
Enable Google Cloud Storage API
-
Start using gcstorage
import os
from google.cloud import storage
from gcstorage import GCStorage, STORAGE_CLASSES
os.environ["GOOGLE_APPLICATION_CREDENTIALS"] = "service_acct.json"
client = storage.Client()
gcs = GCStorage(client)
gcs.list_buckets()
my_bucket = gcs.create_bucket('<my bucket name>', storage_class=STORAGE_CLASSES[2], location='us')
my_bucket = gcs.get_bucket('my_bucket_y22')
bucket_metadata = gcs.get_bucket_metadata(my_bucket)
my_bucket = gcs.get_bucket('my_bucket_y22')
gcs.add_bucket_labels(my_bucket, {'bucket_type': 'general', 'department': 'it'})
my_bucket = gcs.get_bucket('my_bucket_y22')
gcs.delete_bucket_labels(my_bucket)
blobs = gcs.list_blobs(my_bucket.id)
for blob in blobs:
print(blob.name)
my_blob = my_bucket.get_blob(blob.name)
gcs.get_blob_metadata(my_blob)
gcs.upload_file(my_bucket, 'object_destination', file_path)
gcs.download_file_by_blob(my_blob, '<file destination>')
gcs.download_files_by_bucket(my_bucket, '<file destination>')
gcs.download_file_by_blob_by_byte_range(my_bucket, my_blob, '<file destination>', start_byte, end_byte)