Skip to content
This repository was archived by the owner on Jan 20, 2026. It is now read-only.

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

README.rst

googledatastore

Google Cloud Datastore Protocol Buffer client.

Google Cloud Datastore is a fully managed, schemaless, non-relational database accessible through Google APIs infrastructure. It provides a rich set of query capabilities, supports atomic transactions, and automatically scales up and down in response to load.

Usage

>>> import googledatastore as datastore
>>> datastore.set_options(project_id='project-id')
>>> req = datastore.BeginTransactionRequest()
>>> datastore.begin_transaction(req)
<google.datastore.v1.datastore-pb2.BeginTransactionResponse ...>

Installation

$ pip install googledatastore

Documentation

https://cloud.google.com/datastore/docs/

Contribute

https://github.com/GoogleCloudPlatform/google-cloud-datastore