This is http://djangosnippets.org/snippets/1151/ uploaded to pypi. Author is Tarken.
A subclass of HttpResponse which will transform a QuerySet, or sequence of sequences, into either an Excel spreadsheet or CSV file formatted for Excel, depending on the amount of data. All of this is done in-memory and on-the-fly, with no disk writes, thanks to the StringIO library.
Installation
pip install django-excel-response xlwt
Usage
from excel_response import ExcelResponse
def excelview(request):
objs = SomeModel.objects.all()
return ExcelResponse(objs)
or:
from excel_response import ExcelResponse
def excelview(request):
data = [
['Column 1', 'Column 2'],
[1,2]
[23,67]
]
return ExcelResponse(data, 'my_data')
Release files for django-excel-response 1.0
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| django-excel-response-1.0.tar.gz | 2.4 kB | Details |
Release files / django-excel-response-1.0.tar.gz
| Download URL | django-excel-response-1.0.tar.gz |
|---|---|
| Size | 2.4 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
b708184ee1c93ac1769e72c49bae5666b9ffce0892daa0b54c7cbec98e1c6014
|
|
BLAKE2b-256 checksum How to use checksums |
3b88ed54fd80c752df475fbb84402fbbcec9e0cdbcf5a4c3051e9809f5b18630
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |