Reputation: 501
I want to download the blobs on a google storage bucket. What is the difference between the get_bucket
and the bucket
methods a client has? Why do they differ in permissions? Can both be used to download blobs?
Upvotes: 4
Views: 2712
Reputation: 75910
If you have a look to the code, you can see that
In summary, with get_xxx you check the existence of the object, with the other method, you simply declare a name without checks.
With both, you can download the content of a Blob.
Upvotes: 8