gpt4 book ai didi

python-3.x - 使用python将数据写入Google云存储

转载 作者:行者123 更新时间:2023-12-04 23:15:17 26 4
gpt4 key购买 nike

我找不到使用python将本地计算机中的数据集写入google云存储中的方法。我做了很多研究,但没有发现任何线索。需要帮助,谢谢

最佳答案

使用google-cloud Python库的简单示例:

from google.cloud import storage

def upload_blob(bucket_name, source_file_name, destination_blob_name):
"""Uploads a file to the bucket."""
storage_client = storage.Client()
bucket = storage_client.get_bucket(bucket_name)
blob = bucket.blob(destination_blob_name)

blob.upload_from_filename(source_file_name)

print('File {} uploaded to {}.'.format(
source_file_name,
destination_blob_name))

更多示例在此GitHub存储库中: https://github.com/GoogleCloudPlatform/python-docs-samples/blob/master/storage/cloud-client

关于python-3.x - 使用python将数据写入Google云存储,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43682521/

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