django-flexible-reports

A framework for report generation in Django


Keywords
django-flexible-reports
License
MIT
Install
pip install django-flexible-reports==0.2.10

Documentation

Django Flexible Reports

https://coveralls.io/repos/github/mpasternak/django-flexible-reports/badge.svg?branch=master

A framework for report generation in Django

Documentation

The full documentation is at https://django-flexible-reports.readthedocs.io.

Quickstart

Install Django Flexible Reports:

pip install django-flexible-reports

Add it to your INSTALLED_APPS:

INSTALLED_APPS = (
    ...
    'flexible_reports.apps.FlexibleReportsConfig',
    ...
)

Add Django Flexible Reports's URL patterns:

from flexible_reports import urls as flexible_reports_urls


urlpatterns = [
    ...
    url(r'^', include(flexible_reports_urls)),
    ...
]

Features

  • TODO

Running Tests

Does the code actually work?

source <YOURVIRTUALENV>/bin/activate
(myenv) $ pip install tox
(myenv) $ tox

Credits

Tools used in rendering this package: