I\'m trying to serve big files saved in the blobstore using Flask.
For smaller files I can simply do:
def download_blob(blob_key): blob_info = b
If you don't care about range-requests, then you can just set a header of 'X-AppEngine-BlobKey' (or blobstore.BLOB_KEY_HEADER to be safe) with the string-version of your blob-key, along with the content type and disposition as you have it.