django-csv-export-view
django-csv-export-view copied to clipboard
Django class-based view for CSV exports
See docs about this here: https://docs.djangoproject.com/en/3.0/howto/outputting-csv/#streaming-large-csv-files
Is there an option to have the opportunity to keep "multiple values" in the same column? Most of csv renderers flatten such multiplications, so create new columns for them, but...
Scenario: I wanted to create a easy export view for a list of orders including some data like addresses and bank accounts data etc. Bank account data are stored in...