sdementen / django-msteams

Django app to send messages to a MS Teams channel

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

License:MIT License


Languages

Language:Python 65.6%Language:HTML 23.9%Language:Makefile 10.5%