Skip to main content

A Django library for exporting data.

Project description

django-excel-export

A Django library for exporting data in xlsx, xls, docx format.

Live Demo

  • User: admin
  • Password: admin

Demo Source Code

How to install

$ pip install excel-exporter

How to use

Export is achieved by subclassing ExportAdmin, which implements export as an admin action.

# app/admin.py
from excel_exporter.admin import ExportAdmin

class PersonAdmin(ExportAdmin):
    list_display = ( 'name', 'address', ...)
    export_fields = ('name', 'address', ...)

avatar

What you get

avatar

You can define custom export action and add it to export_actions list:

# app/admin.py
from excel_exporter.admin import ExportAdmin
from excel_exporter.action import Docx
class PersonExportDocx(Docx):
    desc = 'persons to docx'
    tpl = 'persons.docx'
    queryset_name = 'ps'

    def get_payloads(self, queryset, list_display):
        payload = super().get_payloads(queryset, list_display)
        payload['test'] = 'A Big Company'
        payload['logo'] = 'staticfiles/1.jpg'
        return payload

class PersonaAdmin(ExportAdmin):
    list_display = ( 'name', 'address', ...)
    export_actions = [PersonExportDocx, ...] 

avatar

What you get avatar

See admin.py in Demo Source Code.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

excel-exporter-0.1.3.tar.gz (18.9 kB view details)

Uploaded Source

Built Distribution

excel_exporter-0.1.3-py2.py3-none-any.whl (18.0 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file excel-exporter-0.1.3.tar.gz.

File metadata

  • Download URL: excel-exporter-0.1.3.tar.gz
  • Upload date:
  • Size: 18.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.8.5

File hashes

Hashes for excel-exporter-0.1.3.tar.gz
Algorithm Hash digest
SHA256 2a6fb9a1cca8b5ac010a05fc98e986ea3ea2c35cc49296209cf1a61762c0607e
MD5 d45dfee45416c0654a03d6aaf873aed8
BLAKE2b-256 318b06616fa3cbf5669957ebe25577120b3d181ab54b64a8b45ce02febe6e3f2

See more details on using hashes here.

File details

Details for the file excel_exporter-0.1.3-py2.py3-none-any.whl.

File metadata

  • Download URL: excel_exporter-0.1.3-py2.py3-none-any.whl
  • Upload date:
  • Size: 18.0 kB
  • Tags: Python 2, Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.8.5

File hashes

Hashes for excel_exporter-0.1.3-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 eb115bbc6f97429704ded3e9e522a2103f537038e8721fc2a33f9a797fe8f774
MD5 223f9da3382da98f6f9b1a2056cc0147
BLAKE2b-256 9b39b72f354299f2cc764375fc9c6c8b52372397ef5beff63841cbf7f80fcc9b

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page