google.cloud storage python api在指定位置创建存储桶

时间:2017-03-03 10:25:31

标签: python-3.x google-cloud-storage

我想在Google云存储中的EU位置创建一个存储桶。我该怎么设置? The docs没有提及任何事情。

from google.cloud import storage
client = storage.Client(project=project_id)
client.create_bucket(bucket_name)

默认情况下,在US位置创建一个存储桶。

1 个答案:

答案 0 :(得分:6)

bucket = Bucket(client, name='bucketname')
bucket.location = 'eu'
bucket.create()