Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/datastore-quickstart.rst
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ You can install the library quickly with ``pip``::
$ pip install gcloud

Run the
`example script <https://github.com/jgeewax/gcloud/blob/master/gcloud/datastore/demo.py>`_
`example script <https://github.com/GoogleCloudPlatform/gcloud-python/blob/master/gcloud/datastore/demo/demo.py>`_
included in the package::

$ python -m gcloud.datastore.demo
Expand Down
2 changes: 1 addition & 1 deletion docs/storage-getting-started.rst
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Enabling the API
----------------

Now that you created a project,
you need to **turn on** the Cloud Datastore API.
you need to **turn on** the Google Cloud Storage API.
This is sort of like telling Google
which services you intend to use for this project.

Expand Down
3 changes: 2 additions & 1 deletion docs/storage-quickstart.rst
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ You can install the library quickly with ``pip``::
$ pip install gcloud

Run the
`example script <https://github.com/jgeewax/gcloud/blob/master/gcloud/storage/demo.py>`_
`example script <https://github.com/GoogleCloudPlatform/gcloud-python/blob/master/gcloud/storage/demo/demo.py>`_
included in the package::

$ python -m gcloud.storage.demo
Expand Down Expand Up @@ -50,6 +50,7 @@ you can create buckets and keys::
'this is test content!'
>>> print bucket.get_all_keys()
[<Key: my-new-bucket, my-test-file.txt>]
>>> key.delete()
>>> bucket.delete()

.. note::
Expand Down