Skip to main content

Python Client for Google Cloud Storage

Project description

Python idiomatic client for Google Cloud Storage

pypi versions

Quick Start

$ pip install --upgrade google-cloud-storage

Authentication

With google-cloud-python we try to make authentication as painless as possible. Check out the Authentication section in our documentation to learn more. You may also find the authentication document shared by all the google-cloud-* libraries to be helpful.

Using the API

Google Cloud Storage (Storage API docs) allows you to store data on Google infrastructure with very high reliability, performance and availability, and can be used to distribute large data objects to users via direct download.

See the google-cloud-python API storage documentation to learn how to connect to Cloud Storage using this Client Library.

You need to create a Google Cloud Storage bucket to use this client library. Follow along with the official Google Cloud Storage documentation to learn how to create a bucket.

from google.cloud import storage
client = storage.Client()
bucket = client.get_bucket('bucket-id-here')
# Then do other things...
blob = bucket.get_blob('remote/path/to/file.txt')
print(blob.download_as_string())
blob.upload_from_string('New contents!')
blob2 = bucket.blob('remote/path/storage.txt')
blob2.upload_from_filename(filename='/local/path.txt')

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

google-cloud-storage-0.22.0.tar.gz (50.3 kB view details)

Uploaded Source

Built Distribution

google_cloud_storage-0.22.0-py2.py3-none-any.whl (64.3 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file google-cloud-storage-0.22.0.tar.gz.

File metadata

File hashes

Hashes for google-cloud-storage-0.22.0.tar.gz
Algorithm Hash digest
SHA256 6570ad2531ac0a250e48f3b0924ba491ff19e7596fdc97cd199cb3b26b30ca48
MD5 ea2c6d65b6fea593b7b7ba69ebb64830
BLAKE2b-256 7ff4efcbe0febebd24b2245d92dd9d04e6057fd8e9b2febb1174d02568a85d22

See more details on using hashes here.

Provenance

File details

Details for the file google_cloud_storage-0.22.0-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for google_cloud_storage-0.22.0-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 490451279bb03966b002f2b836abadb3943dd907a55c8d34b5f187277f117257
MD5 1f081fe27c96f86b66349248256c32aa
BLAKE2b-256 d87b7640f646d3bc116d57a452c9ec794f61de1ca58b26de67298eec062fc908

See more details on using hashes here.

Provenance

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page