我可以使用以下代码从我的 PC 上运行的 python 代码成功访问谷歌云存储桶。
client = storage.Client()
bucket = client.get_bucket('bucket-name')
blob = bucket.get_blob('images/test.png')
现在我不知道如何在不写入硬盘驱动器上的文件的情况下从“blob”中检索和显示图像?
最佳答案
例如,您可以生成一个临时网址
from gcloud import storage
client = storage.Client() # Implicit environ set-up
bucket = client.bucket('my-bucket')
blob = bucket.blob('my-blob')
url_lifetime = 3600 # Seconds in an hour
serving_url = blob.generate_signed_url(url_lifetime)
否则,您可以在您的存储桶中将图像设置为公开,并使用您可以在对象详细信息中找到的永久链接
关于python - 如何显示存储在 Google Cloud 存储桶中的图像,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/58221459/