Metadata-Version: 1.2
Name: django-dataexporter
Version: 0.0.3
Summary: Extensible helper to export Django QuerySets and other data to CSV and Excel.
Home-page: https://github.com/moccu/django-dataexporter
Author: Moccu GmbH & Co. KG
Author-email: info@moccu.com
License: UNKNOWN
Project-URL: Bug Reports, https://github.com/moccu/django-dataexporter/issues
Project-URL: Source, https://github.com/moccu/django-dataexporter
Description: django-dataexporter
        ===================
        
        .. image:: https://img.shields.io/pypi/v/django-dataexporter.svg
           :target: https://pypi.org/project/django-dataexporter/
           :alt: Latest Version
        
        .. image:: https://codecov.io/gh/moccu/django-dataexporter/branch/master/graph/badge.svg
           :target: https://codecov.io/gh/moccu/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
        
        .. image:: https://travis-ci.org/moccu/django-dataexporter.svg?branch=master
           :target: https://travis-ci.org/moccu/django-dataexporter
        
        
        *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 1.11.
        In addition, the Python package ``openpyxl`` needs to be installed.
        
        
        Prepare for development
        -----------------------
        
        A Python 3.6 interpreter is required in addition to pipenv.
        
        .. code-block:: shell
        
            $ pipenv install --python 3.6 --dev
            $ pipenv shell
            $ pip install -e .
        
        
        Now you're ready to run the tests:
        
        .. code-block:: shell
        
            $ pipenv run py.test
        
        
        Resources
        ---------
        
        * `Documentation <https://django-dataexporter.readthedocs.io>`_
        * `Bug Tracker <https://github.com/moccu/django-dataexporter/issues>`_
        * `Code <https://github.com/moccu/django-dataexporter/>`_
        
Keywords: django
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
