从请求将文件上传到云存储而不在本地保存
Posted
技术标签:
【中文标题】从请求将文件上传到云存储而不在本地保存【英文标题】:Upload file to cloud storage from request without saving it locally 【发布时间】:2022-01-04 01:39:54 【问题描述】:我正在尝试使用我在 Flask (python) 上构建的 API 将文件上传到谷歌云存储,但我不想在本地保存文件。直接从请求中获取文件并上传到云存储。
上传到GCS方法
def upload_to_bucket(blob_name, path_to_file):
""" Upload data to a bucket"""
storage_client = storage.Client()
bucket = storage_client.get_bucket(bucket_name)
blob = bucket.blob(blob_name)
blob.upload_from_filename(path_to_file)
#returns a public url
return blob.public_url
从请求体中获取文件对象
file = request.files['file']
这就是我调用方法的方式
url = upload_to_bucket(file.name, file)
但在这里它返回 Attributer 错误。我尝试了 file.value、file.file 但这不起作用。
【问题讨论】:
你检查过谷歌的文档吗? Using Cloud Storage | App Engine flexible environment for Python docs 【参考方案1】:使用 upload_from_string 方法。
file = request.files['file']
blob = bucket.blob(file.filename)
blob.upload_from_string(file.read(), content_type=file.content_type)
API Documentation
【讨论】:
以上是关于从请求将文件上传到云存储而不在本地保存的主要内容,如果未能解决你的问题,请参考以下文章