Skip to content

Latest commit

 

History

History
51 lines (34 loc) · 1.35 KB

README.rst

File metadata and controls

51 lines (34 loc) · 1.35 KB

Django-data-exports

Build Status

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.

Contributing

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