Write to Google Cloud Storage from Cloud Function (python)



我正在尝试从云函数中将文件上传到谷歌云存储。 但是,我无法将云存储库导入我的函数。

是否可以以这种方式从云功能中使用云存储?

云功能

from google.cloud import storage
def upload_blob(bucket_name, blob_text, 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_string(blob_text)
print('File {} uploaded to {}.'.format(
source_file_name,
destination_blob_name))
def log_data(request):
request_json = request.get_json()
BUCKET_NAME = 'my-bucket'
BLOB_NAME = 'test-blob'
BLOB_STR = '{"blob": "some json"}'
upload_blob(BUCKET_NAME, BLOB_STR, BLOB_NAME)
return f'Success!'

错误

Deployment failure:
Function load error: Code in file main.py can't be loaded.
File "/user_code/main.py", line 1, in <module>
from google.cloud import storage
ImportError: cannot import name 'storage' from 'google.cloud' (unknown location)

您需要将google-cloud-storage包添加到requirements.txt文件中,才能将其安装在云函数环境中。

相关内容

  • 没有找到相关文章

最新更新