I have a Django application that makes a .csv file (using csv.writer) and then uploads it to Amazon S3.
How I do it now locally is to make the csv file, store it locally and then save that file to S3. However with heroku and it's "filesytem" I thought it might be better to skip that 'store locally' step.
Is there a way to output a csv file directly to S3 from within python?