Skip to content

Django plugin for building Telnyx backended apps.

License

Notifications You must be signed in to change notification settings

team-telnyx/django-telnyx

Repository files navigation

Django Telnyx

image

image

image

The simplest way to integrate Django apps to Telnyx API's.

Documentation

The full documentation will be available at readthedocs shortly.

Quickstart

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)),
    ...
]

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:

Releases

No releases published

Packages

No packages published

Languages