Using the Django admin interface to upload a large file to GAE

I am trying to find a way to upload a large file to the GAE datastore using the Django admin interface, but have not found an answer that specifically solves this problem. I am new to Python / Django, so there may be an angle that I am not looking at.

I looked at the django-filetransfers solution, but I'm not sure how to integrate it into the admin interface. Any suggestions would be great!

+3
source share
1 answer

Uploading files to the application is done using blobstore, not data storage.

https://developers.google.com/appengine/docs/python/blobstore/overview#Complete_Sample_App

1 . , appengine . .

, .

+2

All Articles