Skip to main content

Django app to write Telegram bots

Project description

CI:

https://travis-ci.org/jlmadurga/django-telegram-bot.svg?branch=master https://coveralls.io/repos/github/jlmadurga/django-telegram-bot/badge.svg?branch=master Requirements Status

PyPI:

https://img.shields.io/pypi/v/django-telegram-bot.svg

Docs:

Documentation Status

Django app to write Telegram bots. Just define commands and how to handle them.

Try Permabots: more stable django app for bots https://github.com/jlmadurga/permabots

NOTE: Just for text messages at this moment.

Documentation

The full documentation is at https://django-telegram-bot.readthedocs.org.

Telegram API documentation at https://core.telegram.org/bots/api

Quickstart

Install django-telegram-bot:

pip install django-telegram-bot

Add telegrambot and rest_framework to your INSTALLED_APPS, and run:

$ python manage.py migrate

After creating a bot in Telegram Platform, create at least one bot with django admin. Token is the only required field. You may need to provided public key certificate for your server. https://core.telegram.org/bots/self-signed Heroku has https and ssl by default so it is a good option if you dont want to deal with that.

Add webhook url to your urlpatterns:

url(r'^telegrambot/', include('telegrambot.urls', namespace="telegrambot")

Define whe file where commands will be defined in urlpatterns variable, analogue to django urls and ROOT_URLCONF:

TELEGRAM_BOT_HANDLERS_CONF = "app.handlers"

Set bot commands handlers is very easy just as defining urls in django. Module with urlpatterns that list different handlers. You can regex directly or use shortcuts like command or unknown_command

urlpatterns = [command('start', StartView.as_command_view()),
           command('author', AuthorCommandView.as_command_view()),
           command('author_inverse', AuthorInverseListView.as_command_view()),
           command('author_query', login_required(AuthorCommandQueryView.as_command_view())),
           unknown_command(UnknownView.as_command_view()),
           regex(r'author_(?P<name>\w+)', AuthorName.as_command_view()),
          ]

To set the webhook for telegram you need django.contrib.sites installed, SITE_ID configured in settings and with it correct value in the DB. The webhook for each bot is set when a Bot is saved and enabled field is set to true.

Bot views responses with Telegram messages to the user who send the command with a text message and keyboard. Compound with a context and a template. The way it is handled is analogue to Django views. Visits docs for more details https://django-telegram-bot.readthedocs.org/usage.html

Features

  • Multiple bots

  • Message handling definition.

  • Authentication

  • Text responses and keyboards.

  • Media messages not supported.

  • Only Markup parse mode.

https://raw.github.com/jlmadurga/django-oscar-telegram-bot/master/docs/imgs/list_commands.png https://raw.github.com/jlmadurga/django-oscar-telegram-bot/master/docs/imgs/categories.png

Running Tests

Does the code actually work?

source <YOURVIRTUALENV>/bin/activate
(myenv) $ pip install -r requirements/test.txt
(myenv) $ make test
(myenv) $ make test-all

History

0.1.0 (2016-21-01)

  • First release on PyPI.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django-telegram-bot-0.6.0.tar.gz (16.2 kB view details)

Uploaded Source

Built Distribution

django_telegram_bot-0.6.0-py2.py3-none-any.whl (26.1 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file django-telegram-bot-0.6.0.tar.gz.

File metadata

File hashes

Hashes for django-telegram-bot-0.6.0.tar.gz
Algorithm Hash digest
SHA256 8154fe9352ca0b62ee83e5c96b74287c3e0a973ecfe599f6278c3e92f7d9c546
MD5 fd387e5120d9f25122cdefd793b0ff92
BLAKE2b-256 2f83d06334ca090c013123d8629dfdc47960f65c38687a3a3ba2863e67cba2ce

See more details on using hashes here.

File details

Details for the file django_telegram_bot-0.6.0-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for django_telegram_bot-0.6.0-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 cc66d18d77d1cd9e6b44e0d82fd18fe856e00249739aa37bf2fe79fa36178ce6
MD5 bd5c6f55bd22c70497a3df1069de4d80
BLAKE2b-256 7a3a9e3b6a2f15639b6b7f865f0624c3e398e67bcaa642564668f21c576fd20b

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page