我想将从网络获取的一些数据保存到 blobstore,但谷歌文档说
已弃用:此处用于将文件写入 Blobstore 的 Files API 功能将在未来某个时间被移除,以支持将文件写入 Google Cloud Storage 并使用 Blobstore 提供服务。
python中的代码如下
from __future__ import with_statement
from google.appengine.api import files
# Create the file
file_name = files.blobstore.create(mime_type='application/octet-stream')
# Open the file and write to it
with files.open(file_name, 'a') as f:
f.write('data')
# Finalize the file. Do this before attempting to read it.
files.finalize(file_name)
# Get the file's blob key
blob_key = files.blobstore.get_blob_key(file_name)
我想知道是否有另一种方式写入 blobstore 而不是官方上传方法。