Django-data-exports is a model data exports app for Django. It allows you to easily create exports for your models.
Adding this app to your project will let you create exports for your models, and customize the data that will be exported by specifying which columns to include, and which format to use.
Typical use case: display a few columns from one of your models as a HTML table to be easily copy/pasted to a spreadsheet.
- Author: Mathieu Agopian and contributors
- Licence: BSD
- Compatibility: Django 1.3+ (class-based-views required)
- Requirements: django-inspect-model
- Documentation: http://django-data-exports.readthedocs.org/en/latest/
Get the code:
git clone https://github.com/magopian/django-data-exports.git cd django-data-export virtualenv -p python2 env source env/bin/activate add2virtualenv .
Install the development requirements:
pip install Django # must be 1.3 or above pip install -r test_requirements.txt
Run the tests:
DJANGO_SETTINGS_MODULE=data_exports.test_settings make test