We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents fcb7085 + 436ac4d commit b449451Copy full SHA for b449451
1 file changed
README.rst
@@ -124,10 +124,10 @@ how to create a bucket.
124
client = storage.Client()
125
bucket = client.get_bucket('bucket-id-here')
126
# Then do other things...
127
- blob = bucket.get_blob('/remote/path/to/file.txt')
+ blob = bucket.get_blob('remote/path/to/file.txt')
128
print blob.download_as_string()
129
blob.upload_from_string('New contents!')
130
- blob2 = bucket.blob('/remote/path/storage.txt')
+ blob2 = bucket.blob('remote/path/storage.txt')
131
blob2.upload_from_filename(filename='/local/path.txt')
132
133
Google Cloud Pub/Sub
0 commit comments