diff --git a/gcloud/datastore/__init__.py b/gcloud/datastore/__init__.py index 6393c2ec99bb..8420de90d5d0 100644 --- a/gcloud/datastore/__init__.py +++ b/gcloud/datastore/__init__.py @@ -14,14 +14,14 @@ """Shortcut methods for getting set up with Google Cloud Datastore. -You'll typically use these to get started with the API: - ->>> from gcloud import datastore ->>> ->>> client = datastore.Client() ->>> key = client.key('EntityKind', 1234) ->>> entity = datastore.Entity(key) ->>> query = client.query(kind='EntityKind') +You'll typically use these to get started with the API:: + + >>> from gcloud import datastore + >>> + >>> client = datastore.Client() + >>> key = client.key('EntityKind', 1234) + >>> entity = datastore.Entity(key) + >>> query = client.query(kind='EntityKind') The main concepts with this API are: