New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

django-flexible-reports

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

django-flexible-reports

A framework for report generation in Django

  • 0.2.10
  • PyPI
  • Socket score

Maintainers
1

============================= Django Flexible Reports

.. image:: https://badge.fury.io/py/django-flexible-reports.svg :target: https://badge.fury.io/py/django-flexible-reports

.. image:: https://github.com/mpasternak/django-flexible-reports/actions/workflows/tests.yml/badge.svg :target: https://github.com/mpasternak/django-flexible-reports/actions

.. image:: https://coveralls.io/repos/github/mpasternak/django-flexible-reports/badge.svg?branch=master :target: https://coveralls.io/github/mpasternak/django-flexible-reports?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:

.. code-block:: python

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

Add Django Flexible Reports's URL patterns:

.. code-block:: python

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:

  • Cookiecutter_
  • cookiecutter-djangopackage_

.. _Cookiecutter: https://github.com/audreyr/cookiecutter .. _cookiecutter-djangopackage: https://github.com/pydanny/cookiecutter-djangopackage

History

0.2.10 (2022-07-07) +++++++++++++++++++

  • Drop support for Django 2.2 and below,
  • Drop support for Python 3.7,
  • Python 3.10 support,
  • Django 3.2 support,
  • enable GitHub Actions,
  • remove Travis-CI config.

0.1.0 (2017-07-20) ++++++++++++++++++

  • First release on PyPI.

Keywords

FAQs


Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc