I have an app I am developing using:
- Django 1.5
- Google App Engine
- Google Cloud SQL
- Python 2.7.5
As using Cloud SQL I am using the pure Django not the no-rel version making full use of the Django ORM.
In the admin part of the app I want to have a form to upload a csv file using GAE Blobstore API.
What I want to achieve is the uploading of the file to the Blobstore and the Blob Key referencing this uploaded file to be saved in my model.
How would I go about doing this?
Thanks for your help.