How to write Big files into Blobstore using experimental API?
I have dilemma.. I'm uploading files both in scribd store and blobstore using tipfy as framework. I have webform with action is not created by blobstore.create_upload_url (i'm just using url_for('myhandler')). I did it because if i'm using blobstore handler the POST response parsed and I cannot use normal python-scribd api to upload file into scribd store. Now I have working scribd saver: class UploadScribdHandler(RequestHandler, BlobstoreUploadMixin): def post(self): uploaded_file = self.request.files.get('upload_file') fname = uploaded_file.filename.strip() try: self.post_to_scribd(uploaded