A mixin for views with a queryset that provides a CSV/Excel export.
Project description
django-spreadsheetresponsemixin
View mixin for django, that generates a csv or excel sheet.
[![Build Status on Travis](https://travis-ci.org/aptivate/django-spreadsheetresponsemixin.svg?branch=master)](https://travis-ci.org/aptivate/django-spreadsheetresponsemixin)
Installation
pip install django-spreadsheetresponsemixin
Usage
Add to your django view as a mixin:
class ExcelExportView(SpreadsheetResponseMixin, ListView): def get(self, request): self.queryset = self.get_queryset() return self.render_excel_response() class CsvExportView(SpreadsheetResponseMixin, ListView): def get(self, request): self.queryset = self.get_queryset() return self.render_csv_response()
Note you must specify a Queryset, ValuesQueryset or ValuesListQueryset on the class or pass it in when you call the render method.
You can also specify the fields and the headers as tuples if you want to refine the results and / or provide custom headers for your columns.
Exported file will be named export.csv or export.xlsx by default, but you can change this by either specifying export_filename attribute to name exported file or export_filename_root to specify only the root part of it (and let app take care of the appropriate extension).
Changelog
Not available for 0.1.10 and earlier - sorry :s
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Hashes for django-spreadsheetresponsemixin-0.1.10.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | 49bc18d53ccc9e6301804f7b73ca54b1d1c3f9ced18540531647e17e9b1c4f54 |
|
MD5 | ac64fa8126bb7945bc9daa9f03e5b67a |
|
BLAKE2b-256 | 417aa99cee9e130b2868dcc1ffe8971f6ef1b31d8a4f3c6391cc8f54cf31ba19 |