Your project description goes here
Project description
Your project description goes here
Documentation
The full documentation is at https://django-coap.readthedocs.io.
Quickstart
Install django-coap:
pip install django-coap
Add it to your INSTALLED_APPS:
INSTALLED_APPS = (
...
'django_coap.apps.DjangoCoapConfig',
...
)
Add django-coap’s URL patterns:
from django_coap import urls as django_coap_urls
urlpatterns = [
...
url(r'^', include(django_coap_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:
History
0.1.0 (2018-03-23)
First release on PyPI.