Skip to main content

Google Cloud Datastore API client library

Project description

Python idiomatic client for Google Cloud Datastore

pypi versions

Quick Start

$ pip install --upgrade google-cloud-datastore

For more information on setting up your Python development environment, such as installing pip and virtualenv on your system, please refer to Python Development Environment Setup Guide for Google Cloud Platform.

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-1.6.0.tar.gz (96.2 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-1.6.0-py2.py3-none-any.whl (76.3 kB view details)

Uploaded Python 2Python 3

File details

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

File metadata

File hashes

Hashes for google-cloud-datastore-1.6.0.tar.gz
Algorithm Hash digest
SHA256 5895c7d02856b217a96c5b86ac041989bfc1a1c889b40f096ccb5c8526c043a3
MD5 21d50e7bf395f3f5dc02c74eb4477f2f
BLAKE2b-256 502391e026f450f8ffcf2ab7bfc46b766611fbd98cd950b7842c9d7173d45e8e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for google_cloud_datastore-1.6.0-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 3f43409a15451b69161eb321826dd2e014191822ef7af7e71423cec85d921b01
MD5 329a7c988d75d9c245ae94de9fafe3c8
BLAKE2b-256 9d1b2d47219d50f818706a1202558d4365cf2fcf4c092c18db68065164944667

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