The simplest way to integrate Django apps to Telnyx API's.
The full documentation will be available at readthedocs shortly.
Install django-telnyx:
pip install django-telnyx
Add it to your INSTALLED_APPS:
INSTALLED_APPS = (
...
'django_telnyx',
...
)
Add django-telnyx's URL patterns:
from django_telnyx import urls as django_telnyx_urls
urlpatterns = [
...
url(r'^', include(django_telnyx_urls)),
...
]
- TODO
Does the code actually work?
source <YOURVIRTUALENV>/bin/activate (myenv) $ pip install tox (myenv) $ tox
pip install -r requirements_dev.txt invoke -l
Tools used in rendering this package: