Web から取得したデータをブロブストアに保存したいのですが、Google ドキュメントには次のように書かれています
非推奨: ファイルを 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)
公式のアップロード方法の代わりにブロブストアに書き込む別の方法があるかどうか疑問に思っています。