我有一个预先存在的存储桶test_bucket
。我正在尝试使用python客户端库来获取具有get_bucket()
方法的存储桶。直接上升不起作用。
这是我的代码。
from google.cloud import storage
storage_client = storage.Client()
try:
bucket = storage_client.get_bucket("test_bucket")
except google.cloud.exceptions.NotFound:
logger.info("not found, sorry")
要清楚,storage_client
变量的实例化工作正常,花花公子(可以打印)。但无论出于何种原因,storage_client.get_bucket("test_bucket")
都没有检索到桶或抛出任何错误。有什么我想念的吗?