我正在尝试使用 Flask 提供保存在 blobstore 中的大文件。
对于较小的文件,我可以简单地做:
def download_blob(blob_key):
blob_info = blobstore.get(blob_key)
response = make_response(blob_info.open().read())
response.headers['Content-Type'] = blob_info.content_type
response.headers['Content-Disposition'] = 'attachment; filename="%s"' % blob_info.filename
return response
但对于较大的文件它会失败。如何在不求助于 webapp2 的情况下将 BlobstoreDownloadHandler 合并到我的 Flask 应用程序中?