We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fd0e6bf commit 476836cCopy full SHA for 476836c
1 file changed
docs/json/json/home.html
@@ -79,14 +79,11 @@ <h3 class="block-title">What is it?</h3>
79
80
<div class="quote-box--supplementary">
81
<h4>Retrieve Datastore Entities</h4>
82
+ <pre><code class="hljs python">from gcloud import datastore
83
- <div hljs hlsj-language="python">
84
- from gcloud import datastore
85
-
86
- client = datastore.Client()
87
- product_key = client.key('Product', 123)
88
- print(client.get(product_key))
89
- </div>
+client = datastore.Client()
+product_key = client.key('Product', 123)
+print(client.get(product_key))</code></pre>
90
</div>
91
</div><!-- end of .container -->
92
</section><!-- end of .featuring -->
0 commit comments