How to move files in Google Cloud Storage from one bucket to another bucket by Python(如何通过 Python 将 Google Cloud Storage 中的文件从一个存储桶移动到另一个存储桶)
问题描述
是否有任何 API 函数允许我们将 Google Cloud Storage 中的文件从一个存储桶移动到另一个存储桶?
Are there any API function that allow us to move files in Google Cloud Storage from one bucket in another bucket?
场景是我们希望 Python 将 A 存储桶中的读取文件移动到 B 存储桶.我知道 gsutil 可以做到这一点,但不确定 Python 是否支持.
The scenario is we want Python to move read files in A bucket to B bucket. I knew that gsutil could do that but not sure Python can support that or not.
谢谢.
推荐答案
使用 google-api-python-client,上有一个例子storage.objects.copy 页面.复制后,您可以使用 storage.objects.delete一个>.
Using the google-api-python-client, there is an example on the storage.objects.copy page. After you copy, you can delete the source with storage.objects.delete.
destination_object_resource = {}
req = client.objects().copy(
sourceBucket=bucket1,
sourceObject=old_object,
destinationBucket=bucket2,
destinationObject=new_object,
body=destination_object_resource)
resp = req.execute()
print json.dumps(resp, indent=2)
client.objects().delete(
bucket=bucket1,
object=old_object).execute()
这篇关于如何通过 Python 将 Google Cloud Storage 中的文件从一个存储桶移动到另一个存储桶的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何通过 Python 将 Google Cloud Storage 中的文件从一个存储桶移动到另一个存储桶


- 如何在 Python 的元组列表中对每个元组中的第一个值求和? 2022-01-01
- padding='same' 转换为 PyTorch padding=# 2022-01-01
- 分析异常:路径不存在:dbfs:/databricks/python/lib/python3.7/site-packages/sampleFolder/data; 2022-01-01
- python-m http.server 443--使用SSL? 2022-01-01
- 如何在 python3 中将 OrderedDict 转换为常规字典 2022-01-01
- python check_output 失败,退出状态为 1,但 Popen 适用于相同的命令 2022-01-01
- 使用Heroku上托管的Selenium登录Instagram时,找不到元素';用户名'; 2022-01-01
- 如何将一个类的函数分成多个文件? 2022-01-01
- 沿轴计算直方图 2022-01-01
- pytorch 中的自适应池是如何工作的? 2022-07-12