The full documentation is at https://django-webix-sender.readthedocs.io.
Install Django Webix Sender:
$ pip install django-webix-senderAdd 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')),
# ...
]Does the code actually work?
$ source <YOURVIRTUALENV>/bin/activate
$ (myenv) $ pip install tox
$ (myenv) $ tox