App for creating telegram bots, with setting webhook, receive messages and subscribe users
The full documentation is at https://django-telegram-bots.readthedocs.io.
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)),
...
]
- TODO
Does the code actually work?
source <YOURVIRTUALENV>/bin/activate (myenv) $ pip install tox (myenv) $ tox
Tools used in rendering this package: