See http://googlecloudplatform.github.io/gcloud-python/
The snippet is:
fromgcloudimportdatastoredatastore.set_defaults()
product_key=datastore.Key('Product', 123)
printdatastore.get([product_key])I'd expect it to be:
fromgcloudimportdatastoreproduct_key=datastore.Key('Product', 123)
product=datastore.get(product_key)
See http://googlecloudplatform.github.io/gcloud-python/
The snippet is:
I'd expect it to be: