.. toctree:: :maxdepth: 0 :hidden: :caption: google-cloud gcloud-api gcloud-config gcloud-auth operation-api .. toctree:: :maxdepth: 0 :hidden: :caption: Datastore Client datastore-entities datastore-keys datastore-queries datastore-transactions datastore-batches datastore-helpers .. toctree:: :maxdepth: 0 :hidden: :caption: Storage Client storage-blobs storage-buckets storage-acl storage-batch .. toctree:: :maxdepth: 0 :hidden: :caption: Pub/Sub pubsub-usage Client pubsub-topic pubsub-subscription pubsub-message pubsub-iam .. toctree:: :maxdepth: 0 :hidden: :caption: BigQuery bigquery-usage Client bigquery-dataset bigquery-job bigquery-table bigquery-query bigquery-schema .. toctree:: :maxdepth: 0 :hidden: :caption: Cloud Bigtable bigtable-usage bigtable-client-intro bigtable-instance-api bigtable-table-api bigtable-data-api Client bigtable-instance bigtable-cluster bigtable-table bigtable-column-family bigtable-row bigtable-row-filters bigtable-row-data .. toctree:: :maxdepth: 0 :hidden: :caption: Resource Manager Overview resource-manager-client resource-manager-project .. toctree:: :maxdepth: 0 :hidden: :caption: DNS dns-usage Client dns-zone dns-resource-record-set dns-changes .. toctree:: :maxdepth: 0 :hidden: :caption: Stackdriver Logging logging-usage Client logging-logger logging-entries logging-metric logging-sink logging-handlers logging-transports-sync logging-transports-thread logging-transports-base .. toctree:: :maxdepth: 0 :hidden: :caption: Stackdriver Error Reporting error-reporting-usage Client .. toctree:: :maxdepth: 0 :hidden: :caption: Stackdriver Monitoring monitoring-usage Client monitoring-metric monitoring-resource monitoring-group monitoring-query monitoring-timeseries monitoring-label .. toctree:: :maxdepth: 0 :hidden: :caption: Translate translate-usage Client .. toctree:: :maxdepth: 0 :hidden: :caption: Vision vision-usage vision-client vision-image vision-feature .. toctree:: :maxdepth: 0 :hidden: :caption: Natural Language language-usage Client language-document language-responses .. toctree:: :maxdepth: 0 :hidden: :caption: External Links GitHub Issues Stack Overflow PyPI Getting started --------------- The ``google-cloud`` library is ``pip`` install-able: .. code-block:: console $ pip install google-cloud If you want to install ``google-cloud-python`` from source, you can clone the repository from GitHub: .. code-block:: console $ git clone git://github.com/GoogleCloudPlatform/google-cloud-python.git $ cd google-cloud-python $ python setup.py install ---- Cloud Datastore ~~~~~~~~~~~~~~~ `Google Cloud Datastore`_ is a fully managed, schemaless database for storing non-relational data. .. _Google Cloud Datastore: https://developers.google.com/datastore/ .. code-block:: python from google.cloud import datastore client = datastore.Client() key = client.key('Person') entity = datastore.Entity(key=key) entity['name'] = 'Your name' entity['age'] = 25 client.put(entity) Cloud Storage ~~~~~~~~~~~~~ `Google Cloud Storage`_ allows you to store data on Google infrastructure. .. _Google Cloud Storage: https://developers.google.com/storage/ .. code-block:: python from google.cloud import storage client = storage.Client() bucket = client.get_bucket('') blob = bucket.blob('my-test-file.txt') blob.upload_from_string('this is test content!')