gpt4 book ai didi

python - 如何上传图片并在 Google Cloud Bucket 中公开

转载 作者:太空宇宙 更新时间:2023-11-04 03:10:53 28 4
gpt4 key购买 nike

我正在尝试将图像上传到谷歌云存储桶并使用 python 获取其 URI(gc://my_bucket/file.jpg)。

任何人都可以告诉我该怎么做,因为我之前没有任何 python 经验。

最佳答案

这是我所知道的最简单的方法。它需要先安装 gcloud-python ,您可以使用命令 pip install --upgrade gcloud:

from gcloud import storage

bucket_name = 'name-of-bucket'
object_name = 'objectName.jpg'
client = storage.Client()
bucket = client.get_bucket(bucket_name)
blob = bucket.get_blob(object_name)
blob.upload_from_filename('localImageFileName.jpg', content_type='image/jpeg')
blob.make_public()
uri = "gs://%s/%s" % (bucket_name, object_name)

关于python - 如何上传图片并在 Google Cloud Bucket 中公开,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38069038/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com