Skip to main content

Python Client for Google Cloud Datastore

Project description

Python idiomatic client for Google Cloud Datastore

Quick Start

$ pip install --upgrade google-cloud-datastore

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 Datastore (Datastore API docs) is a fully managed, schemaless database for storing non-relational data. Cloud Datastore automatically scales with your users and supports ACID transactions, high availability of reads and writes, strong consistency for reads and ancestor queries, and eventual consistency for all other queries.

See the google-cloud-python API datastore documentation to learn how to interact with the Cloud Datastore using this Client Library.

See the official Google Cloud Datastore documentation for more details on how to activate Cloud Datastore for your project.

from google.cloud import datastore
# Create, populate and persist an entity
entity = datastore.Entity(key=datastore.Key('EntityKind'))
entity.update({
    'foo': u'bar',
    'baz': 1337,
    'qux': False,
})
# Then query for entities
query = datastore.Query(kind='EntityKind')
for result in query.fetch():
    print(result)

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-datastore-0.20.0.tar.gz (73.6 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

google_cloud_datastore-0.20.0-py2.py3-none-any.whl (91.8 kB view details)

Uploaded Python 2Python 3

File details

Details for the file google-cloud-datastore-0.20.0.tar.gz.

File metadata

File hashes

Hashes for google-cloud-datastore-0.20.0.tar.gz
Algorithm Hash digest
SHA256 e93e864d9aaf446fda6bb0a893a9e22638a5499524b32d5e39a72e122bc47eff
MD5 5c198aa3d3b982aa5532a880d8ea9d7c
BLAKE2b-256 6d5fbdc523a8392be10c0ef48f6ccfc3af5a0122f56e6c26e18288fa394fb9d2

See more details on using hashes here.

File details

Details for the file google_cloud_datastore-0.20.0-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for google_cloud_datastore-0.20.0-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 a8b16ca4231f65339d09ab5f6336a801c3dc7bc27dace2c0a25e380f5473b314
MD5 124c9b5f541121a1b862e7340b153b6e
BLAKE2b-256 241e2808bff8afd9510f43b14e13bd29cde16d6d652d0d54797f564c61505a25

See more details on using hashes here.

Supported by

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