Django MS Teams

https://badge.fury.io/py/django-msteams.svg https://travis-ci.org/sdementen/django-msteams.svg?branch=master https://codecov.io/gh/sdementen/django-msteams/branch/master/graph/badge.svg

Django app to send messages to a MS Teams channel

Documentation

The full documentation is at https://django-msteams.readthedocs.io.

Quickstart

Install Django MS Teams:

pip install django-msteams

Add it to your INSTALLED_APPS:

INSTALLED_APPS = (
    ...
    'django_msteams.apps.DjangoMSTeamsConfig',
    ...
)

Add Django MS Teams’s URL patterns:

from django_msteams import urls as django_msteams_urls


urlpatterns = [
    ...
    url(r'^', include(django_msteams_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: