On Sat, Nov 9, 2013 at 6:22 PM, CEBILE ELLEN SKHOSANA <[email protected] > wrote:
> hey guys. Im trying to upload large files using a form to blobstore > without the blobstore_handlers.BlobstoreDownloadHandler class since Im not > using the webapp framework > Are you trying to upload or download files? To upload files to the blobstore, you need to use the example code here: https://developers.google.com/appengine/docs/python/blobstore/#Python_Uploading_a_blob To download a file from the blobstore without using the webapp framework, you can set the *X-AppEngine-BlobKey* header on a response with the value being the key of the blob to serve. With that said, it's much easier to use the webapp framework to handle these types of requests. Is there a specific reason you don't want to use webapp? ----------------- -Vinny P Technology & Media Advisor Chicago, IL App Engine Code Samples: http://www.learntogoogleit.com -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/google-appengine. For more options, visit https://groups.google.com/groups/opt_out.
