[Answer]-Uploading and saving files using django nonrel in Google App engine?

1👍

There’s no such thing as ‘save to disk’ in the App Engine world. The closest was Blobstore, and now it’s GCS.

django-nonrel includes a django storage class to upload to Blobstore. Follow this:

http://www.allbuttonspressed.com/blog/django/2010/06/Uploads-to-Blobstore-and-GridFS-with-Django

You don’t need to fiddle with the FILE_UPLOAD_HANDLERS, the defaults are fine.

Leave a comment