vladimirmyshkovski / django-telegram-bots

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

telegram_bots

https://travis-ci.org/narnikgamarnikus/django-telegram-bots.svg?branch=master

App for creating telegram bots, with setting webhook, receive messages and subscribe users

Documentation

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

Quickstart

Install telegram_bots:

pip install django-telegram-bots

Add it to your INSTALLED_APPS:

INSTALLED_APPS = (
    ...
    'telegram_bots',
    ...
)

Add telegram_bots's URL patterns:

from telegram_bots import urls as telegram_bots_urls


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

License:MIT License


Languages

Language:Python 95.4%Language:HTML 3.3%Language:Makefile 1.2%