The Google Cloud Storage bucket browser UI has a checkbox titled "Share publicly" which makes a blob downloadable by anyone.
The Python API has a way to check that box using make_public()
(but not uncheck), and to get the resulting link using public_url()
. It doesn't have an is_public()
.
How can you find out if a blob is publicly accessible?