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 hashes)

Uploaded Source

Built Distribution

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

Uploaded Python 2 Python 3

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