I am creating a django application which is connected to Amazon S3 to save user upload files. This is done using django-storages.
During the course of the app a CSV file is generated. I am able to save the file locally. But how can I upload the file directly to S3 without saving it locally and save the file S3 URL in the database at the same time?
I have tried using StringIO but that generates a TypeError: Unicode objects must be encoded before hashing
Any suggestions/solutions will be much appreciated!