当前位置:  开发笔记 > 编程语言 > 正文

使用python将数据写入Google云存储

如何解决《使用python将数据写入Google云存储》经验,为你挑选了1个好方法。

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



1> Brandon Yarb..:

使用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

推荐阅读
放ch养奶牛
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有