Skip to content

frankhood/django-response-view-mixin

Repository files navigation

Django Response View Mixin

https://badge.fury.io/py/django-response-view-mixin.svg/?style=flat-square https://readthedocs.org/projects/pip/badge/?version=latest&style=flat-square Coverage Status

Your project description goes here

Documentation

The full documentation is at https://django-response-view-mixin.readthedocs.io.

Quickstart

Install Django Response View Mixin:

pip install django-response-view-mixin

Add it to your INSTALLED_APPS:

INSTALLED_APPS = (
    ...
    'response_view_mixin',
    ...
)

Add Django Response View Mixin's URL patterns:

from response_view_mixin import urls as response_view_mixin_urls


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

Features

  • TODO

Running Tests

Does the code actually work?

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

Development commands

pip install -r requirements_dev.txt
invoke -l

Credits

Tools used in rendering this package:

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Packages

No packages published