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
Built Distribution
Hashes for google-cloud-datastore-0.22.0.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | 59044f0c81b74f9819481124a122e7781656d9d20be16aed61142a3cbfaf8b0f |
|
MD5 | 55377910cc39352f8ce3455596cc4a3a |
|
BLAKE2b-256 | 71fddf77565ceb17ff71422bc35fd94a0db6c1f08f036e123d75534f59cdf9af |
Hashes for google_cloud_datastore-0.22.0-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 663cbbc39ac58db9b9a557633a913f1af2efbe767f39face4b139ef877044b77 |
|
MD5 | 7cd5d53fd58a89dceb2bf81ef76b4eb8 |
|
BLAKE2b-256 | c0c46b198962814ca26cf06bbd8c7c6ee6e78772127db2dfc3df85bd48dacd89 |