team-telnyx / django-telnyx

Django plugin for building Telnyx backended apps.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Django Telnyx

https://travis-ci.org/luizanao/django-telnyx.svg?branch=master

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:

About

Django plugin for building Telnyx backended apps.

License:MIT License


Languages

Language:Python 100.0%