Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Removing storage.api module.
  • Loading branch information
dhermes committed Jul 7, 2015
commit 15501000988072931c3cfd52bd132da973d67e78
4 changes: 2 additions & 2 deletions docs/_components/storage-getting-started.rst
Original file line number Diff line number Diff line change
Expand Up @@ -150,10 +150,10 @@ Accessing a bucket
------------------

If you already have a bucket, use
:func:`get_bucket <gcloud.storage.api.get_bucket>` to retrieve the
:meth:`get_bucket <gcloud.storage.client.Client.get_bucket>` to retrieve the
bucket object::

>>> bucket = storage.get_bucket('my-bucket', connection=connection)
>>> bucket = client.get_bucket('my-bucket')

If you want to get all the blobs in the bucket, you can use
:func:`list_blobs <gcloud.storage.bucket.Bucket.list_blobs>`::
Expand Down
4 changes: 0 additions & 4 deletions gcloud/storage/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,10 +47,6 @@
from gcloud.storage._implicit_environ import get_default_bucket
from gcloud.storage._implicit_environ import get_default_connection
from gcloud.storage._implicit_environ import set_default_connection
from gcloud.storage.api import create_bucket
from gcloud.storage.api import get_bucket
from gcloud.storage.api import list_buckets
from gcloud.storage.api import lookup_bucket
from gcloud.storage.batch import Batch
from gcloud.storage.blob import Blob
from gcloud.storage.bucket import Bucket
Expand Down
198 changes: 0 additions & 198 deletions gcloud/storage/api.py

This file was deleted.

Loading