I'm building a web app for GAE where logged-in users may download potentially large files. How do I construct such responses (or comet responses)? I believe the webapp2 Response
object fully buffers and has no flush()
.
store the file in a blob and let the user download the blob. https://developers.google.com/appengine/docs/python/blobstore/overview