-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Closed
Labels
api: datastoreIssues related to the Datastore API.Issues related to the Datastore API.type: feature request‘Nice-to-have’ improvement, new feature or different behavior or design.‘Nice-to-have’ improvement, new feature or different behavior or design.
Description
See http://googlecloudplatform.github.io/gcloud-python/
The snippet is:
from gcloud import datastore
datastore.set_defaults()
product_key = datastore.Key('Product', 123)
print datastore.get([product_key])
I'd expect it to be:
from gcloud import datastore
product_key = datastore.Key('Product', 123)
product = datastore.get(product_key)
Metadata
Metadata
Assignees
Labels
api: datastoreIssues related to the Datastore API.Issues related to the Datastore API.type: feature request‘Nice-to-have’ improvement, new feature or different behavior or design.‘Nice-to-have’ improvement, new feature or different behavior or design.