django-webix-sender


License
gnuplot
Install
pip install django-webix-sender==1.0.0

Documentation

Django Webix Sender

Version Build Codecov Maintainability Issues Py versions License

Documentation

The full documentation is at https://django-webix-sender.readthedocs.io.

Quickstart

Install Django Webix Sender:

$ pip install django-webix-sender

Add django-webix-sender to your INSTALLED_APPS

INSTALLED_APPS = [
    # ...
    'django_webix_sender',
    # ...
]

Add django-webix-sender URLconf to your project urls.py file

from django.conf.urls import url, include

urlpatterns = [
    # ...
    url(r'^django-webix-sender/', include('django_webix_sender.urls')),
    # ...
]

Running Tests

Does the code actually work?

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