Skip to content

sdementen/django-msteams

Repository files navigation

Django MS Teams

https://travis-ci.org/sdementen/django-msteams.svg?branch=master

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:

About

Django app to send messages to a MS Teams channel

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published