Metadata-Version: 2.1
Name: django-dataexporter
Version: 1.0.0
Summary: Extensible helper to export Django QuerySets and other data to CSV and Excel.
Home-page: https://github.com/lenarother/django-dataexporter
License: MIT
Author: Stephan Jaekel
Author-email: steph@rdev.info
Requires-Python: >=3.6,<4
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: Unix
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Provides-Extra: docs
Requires-Dist: Django (>=2.2)
Requires-Dist: Sphinx (>=3.5); extra == "docs"
Requires-Dist: importlib-metadata; python_version < "3.8"
Requires-Dist: openpyxl (>=2.6)
Project-URL: Repository, https://github.com/lenarother/django-dataexporter
Description-Content-Type: text/x-rst

django-dataexporter
===================

.. image:: https://img.shields.io/pypi/v/django-dataexporter.svg
   :target: https://pypi.org/project/django-dataexporter/
   :alt: Latest Version

.. image:: https://github.com/stephrdev/django-tapeforms/workflows/Test/badge.svg?branch=master
   :target: https://github.com/stephrdev/django-tapeforms/actions?workflow=Test
   :alt: CI Status

.. image:: https://codecov.io/gh/lenarother/django-dataexporter/branch/master/graph/badge.svg
   :target: https://codecov.io/gh/lenarother/django-dataexporter
   :alt: Coverage Status

.. image:: https://readthedocs.org/projects/django-dataexporter/badge/?version=latest
   :target: https://django-dataexporter.readthedocs.io/en/stable/?badge=latest
   :alt: Documentation Status


*django-dataexporter* is a extensible helper to export Django QuerySets and other data to CSV and Excel.


Features
--------

* Exporter class to generate CSV and Excel files out of QuerySets and other iterables.
* Factory to generate Django ModelAdmin actions to trigger an export out of Django's famous admin interface.


Requirements
------------

django-dataexporter supports Python 3 only and requires at least Django 2.
In addition, the Python package ``openpyxl`` needs to be installed.


Prepare for development
-----------------------

A Python 3.6 interpreter is required in addition to poetry.

.. code-block:: shell

    $ poetry install


Now you're ready to run the tests:

.. code-block:: shell

     $ poetry run pytest


Resources
---------

* `Documentation <https://django-dataexporter.readthedocs.io>`_
* `Bug Tracker <https://github.com/lenarother/django-dataexporter/issues>`_
* `Code <https://github.com/lenarother/django-dataexporter/>`_

