python-telegram-bot/README.rst

505 lines
18 KiB
ReStructuredText
Raw Normal View History

2015-12-13 21:18:59 +01:00
.. image:: https://github.com/python-telegram-bot/logos/blob/master/logo-text/png/ptb-logo-text_768.png?raw=true
:align: center
2015-12-14 12:22:25 +01:00
:target: https://github.com/python-telegram-bot/logos
2015-12-13 21:18:59 +01:00
:alt: python-telegram-bot Logo
2015-07-08 00:28:22 +02:00
2016-04-23 12:27:37 +02:00
Not **just** a Python wrapper around the Telegram Bot API
2015-07-08 00:28:22 +02:00
*Stay tuned for library updates and new releases on our* `Telegram Channel <https://telegram.me/pythontelegrambotchannel>`_.
2015-10-08 15:40:27 +02:00
2015-08-10 23:17:13 +02:00
.. image:: https://img.shields.io/pypi/v/python-telegram-bot.svg
:target: https://pypi.python.org/pypi/python-telegram-bot
:alt: PyPi Package Version
2015-09-04 23:19:05 +02:00
.. image:: https://img.shields.io/pypi/pyversions/python-telegram-bot.svg
:target: https://pypi.python.org/pypi/python-telegram-bot
:alt: Supported python versions
2015-08-10 23:13:14 +02:00
.. image:: https://img.shields.io/pypi/dm/python-telegram-bot.svg
:target: https://pypi.python.org/pypi/python-telegram-bot
2015-08-10 23:17:13 +02:00
:alt: PyPi Package Monthly Download
2015-09-04 23:19:05 +02:00
2015-08-11 23:15:45 +02:00
.. image:: https://readthedocs.org/projects/python-telegram-bot/badge/?version=latest
:target: https://readthedocs.org/projects/python-telegram-bot/?badge=latest
:alt: Documentation Status
2015-09-04 23:19:05 +02:00
2015-11-09 19:06:30 +01:00
.. image:: https://img.shields.io/pypi/l/python-telegram-bot.svg
:target: https://www.gnu.org/licenses/lgpl-3.0.html
2015-08-10 23:15:17 +02:00
:alt: LGPLv3 License
2015-07-08 00:28:22 +02:00
.. image:: https://travis-ci.org/python-telegram-bot/python-telegram-bot.svg?branch=master
:target: https://travis-ci.org/python-telegram-bot/python-telegram-bot
2015-08-11 19:37:32 +02:00
:alt: Travis CI Status
.. image:: https://codeclimate.com/github/python-telegram-bot/python-telegram-bot/badges/gpa.svg
:target: https://codeclimate.com/github/python-telegram-bot/python-telegram-bot
2015-07-21 15:46:32 +02:00
:alt: Code Climate
2015-09-04 23:19:05 +02:00
.. image:: https://coveralls.io/repos/python-telegram-bot/python-telegram-bot/badge.svg?branch=master&service=github
:target: https://coveralls.io/github/python-telegram-bot/python-telegram-bot?branch=master
2015-08-11 19:37:32 +02:00
:alt: Coveralls
2016-02-01 18:14:17 +01:00
2016-01-09 14:57:46 +01:00
.. image:: https://img.shields.io/badge/Telegram-Group-blue.svg
2016-03-13 23:23:48 +01:00
:target: https://telegram.me/pythontelegrambotgroup
2016-01-09 14:57:46 +01:00
:alt: Telegram Group
2015-07-21 15:46:32 +02:00
2015-07-11 16:55:05 +02:00
=================
Table of contents
=================
- `Introduction`_
- `Telegram API support`_
2015-07-16 13:20:28 +02:00
2015-07-11 16:55:05 +02:00
- `Installing`_
- `Getting the code`_
2015-08-11 23:07:32 +02:00
- `Getting started`_
2015-07-12 15:35:37 +02:00
2016-03-23 21:36:34 +01:00
#. `Learning by example`_
2016-02-01 18:14:17 +01:00
2016-03-23 21:36:34 +01:00
#. `API`_
2016-02-01 18:14:17 +01:00
2016-03-23 21:36:34 +01:00
#. `Extensions`_
2015-08-09 14:59:41 +02:00
2016-03-23 21:36:34 +01:00
#. `JobQueue`_
2015-09-04 23:19:05 +02:00
2016-03-23 21:36:34 +01:00
#. `Logging`_
2016-01-04 11:34:47 +01:00
2016-03-23 21:36:34 +01:00
#. `Documentation`_
2015-07-21 14:37:10 +02:00
- `Getting help`_
2015-07-11 16:55:05 +02:00
- `Contributing`_
2015-07-11 16:55:05 +02:00
2016-04-24 18:39:48 +02:00
- `License`_
2015-07-11 16:55:05 +02:00
===============
_`Introduction`
===============
2015-07-08 00:28:22 +02:00
2015-07-21 14:37:10 +02:00
This library provides a pure Python interface for the `Telegram Bot API <https://core.telegram.org/bots/api>`_. It works with Python versions from 2.6+. It also works with `Google App Engine <https://cloud.google.com/appengine>`_.
2015-07-11 03:21:52 +02:00
=======================
2015-07-16 13:20:28 +02:00
_`Telegram API support`
=======================
2015-07-16 13:20:28 +02:00
2015-07-11 03:24:24 +02:00
========================= ============
Telegram Bot API Method *Supported?*
========================= ============
getMe Yes
sendMessage Yes
forwardMessage Yes
sendPhoto Yes
sendAudio Yes
sendDocument Yes
sendSticker Yes
sendVideo Yes
2015-08-17 16:45:28 +02:00
sendVoice Yes
2015-07-11 03:24:24 +02:00
sendLocation Yes
sendChatAction Yes
getUpdates Yes
getUserProfilePhotos Yes
2015-09-20 17:28:10 +02:00
getFile Yes
2015-07-11 03:24:24 +02:00
setWebhook Yes
2016-03-13 00:04:45 +01:00
answerInlineQuery Yes
2016-04-22 15:34:21 +02:00
kickChatMember Yes
unbanChatMember Yes
answerCallbackQuery Yes
editMessageText Yes
editMessageCaption Yes
editMessageReplyMarkup Yes
answerCallbackQuery Yes
2015-07-11 03:24:24 +02:00
========================= ============
2015-07-08 00:28:22 +02:00
2015-07-11 16:55:05 +02:00
=============
_`Installing`
=============
2015-07-08 23:35:05 +02:00
You can install or upgrade python-telegram-bot with::
2015-07-21 14:42:22 +02:00
2016-04-23 15:51:02 +02:00
$ pip install python-telegram-bot==4.0rc1 --upgrade
2015-07-08 23:35:05 +02:00
2015-07-11 16:55:05 +02:00
===================
_`Getting the code`
===================
2015-07-08 00:28:22 +02:00
The code is hosted at https://github.com/python-telegram-bot/python-telegram-bot
2015-07-08 00:28:22 +02:00
Check out the latest development version anonymously with::
$ git clone https://github.com/python-telegram-bot/python-telegram-bot
2015-07-08 00:28:22 +02:00
$ cd python-telegram-bot
2016-01-06 14:54:22 +01:00
Install dependencies:
$ pip install -r requirements.txt
$ pip install -r requirements-dev.txt
2016-01-06 14:54:22 +01:00
2015-07-08 00:28:22 +02:00
Run tests:
2015-07-11 03:21:52 +02:00
$ make test
2015-07-08 00:28:22 +02:00
To see other options available, run:
2015-07-11 03:21:52 +02:00
$ make help
2015-07-08 00:28:22 +02:00
2015-08-11 23:07:32 +02:00
==================
_`Getting started`
==================
2015-07-08 00:28:22 +02:00
View the last release API documentation at: https://core.telegram.org/bots/api
2016-04-25 09:58:09 +02:00
This library uses the `logging` module. To set up logging to standard output, put:
.. code:: python
import logging
logging.basicConfig(level=logging.DEBUG,
format='%(asctime)s - %(name)s - %(levelname)s - %(message)s')
at the beginning of your script.
**Note:** The ``telegram.ext`` module will catch errors that would cause the bot to crash. All these are logged to the ``logging`` module, so it's recommended to use this if you are looking for error causes.
2016-03-23 21:36:34 +01:00
----------------------
_`Learning by example`
----------------------
We believe that the best way to learn and understand this simple package is by example. So here are some examples for you to review. Even if it's not your approach for learning, please take a look at ``echobot2`` (below), it is de facto the base for most of the bots out there. Best of all, the code for these examples are released to the public domain, so you can start by grabbing the code and building on top of it.
- `clibot <https://github.com/python-telegram-bot/python-telegram-bot/blob/master/examples/clibot.py>`_ has a command line interface.
2016-03-23 21:36:34 +01:00
- `echobot2 <https://github.com/python-telegram-bot/python-telegram-bot/blob/master/examples/echobot2.py>`_ replies back messages.
- `inlinebot <https://github.com/python-telegram-bot/python-telegram-bot/blob/master/examples/inlinebot.py>`_ basic example of an `inline bot <https://core.telegram.org/bots/inline>`_
2016-03-23 21:36:34 +01:00
- `state machine bot <https://github.com/python-telegram-bot/python-telegram-bot/blob/master/examples/state_machine_bot.py>`_ keeps the state for individual users, useful for multipart conversations
2016-03-23 21:36:34 +01:00
- `timerbot <https://github.com/python-telegram-bot/python-telegram-bot/blob/master/examples/timerbot.py>`_ uses the ``JobQueue`` to send timed messages.
2016-03-23 21:36:34 +01:00
Examples using only the API:
2016-03-23 21:36:34 +01:00
- `echobot <https://github.com/python-telegram-bot/python-telegram-bot/blob/master/examples/legacy/echobot.py>`_ replies back messages.
- `roboed <https://github.com/python-telegram-bot/python-telegram-bot/blob/master/examples/legacy/roboed.py>`_ talks to `Robô Ed <http://www.ed.conpet.gov.br/br/converse.php>`_.
Look at the examples on the `wiki <https://github.com/python-telegram-bot/python-telegram-bot/wiki/Examples>`_ to see other bots the community has built.
2016-03-23 21:36:34 +01:00
2015-07-11 16:55:05 +02:00
------
_`API`
------
2015-07-08 00:28:22 +02:00
Note: Using the ``Bot`` class directly is the 'old' method, we have an easier way to make bots described in the next section. All of this is however still important information, even if you're using the ``telegram.ext`` submodule!
2015-07-08 22:58:50 +02:00
The API is exposed via the ``telegram.Bot`` class.
To generate an Access Token you have to talk to `BotFather <https://telegram.me/botfather>`_ and follow a few simple steps (described `here <https://core.telegram.org/bots#6-botfather>`_).
2015-07-08 22:58:50 +02:00
For full details see the `Bots: An introduction for developers <https://core.telegram.org/bots>`_.
2016-04-25 09:58:09 +02:00
To create an instance of the ``telegram.Bot``:
.. code:: python
2015-07-08 00:28:22 +02:00
>>> import telegram
>>> bot = telegram.Bot(token='token')
2016-04-25 09:58:09 +02:00
To see if your credentials are successful:
.. code:: python
2015-07-08 00:28:22 +02:00
2016-04-02 23:13:49 +02:00
>>> print(bot.getMe())
2015-07-08 00:28:22 +02:00
{"first_name": "Toledo's Palace Bot", "username": "ToledosPalaceBot"}
2015-07-08 22:58:50 +02:00
Bots can't initiate conversations with users. A user must either add them to a group or send them a message first. People can use ``telegram.me/<bot_username>`` links or username search to find your bot.
2016-04-25 09:58:09 +02:00
To fetch text messages sent to your Bot:
.. code:: python
2015-07-08 22:58:50 +02:00
>>> updates = bot.getUpdates()
2016-04-02 23:13:49 +02:00
>>> print([u.message.text for u in updates])
2015-07-08 22:58:50 +02:00
2016-04-25 09:58:09 +02:00
To fetch images sent to your Bot:
.. code:: python
2015-07-08 22:58:50 +02:00
>>> updates = bot.getUpdates()
2016-04-02 23:13:49 +02:00
>>> print([u.message.photo for u in updates if u.message.photo])
2015-07-08 22:58:50 +02:00
2016-04-25 09:58:09 +02:00
To reply messages you'll always need the ``chat_id``:
.. code:: python
2015-07-08 22:58:50 +02:00
>>> chat_id = bot.getUpdates()[-1].message.chat_id
2016-04-25 09:58:09 +02:00
To post a text message:
.. code:: python
2015-07-09 04:35:08 +02:00
>>> bot.sendMessage(chat_id=chat_id, text="I'm sorry Dave I'm afraid I can't do that.")
2016-04-25 09:58:09 +02:00
To post a text message with markdown:
.. code:: python
>>> bot.sendMessage(chat_id=chat_id, text="*bold* _italic_ [link](http://google.com).", parse_mode=telegram.ParseMode.MARKDOWN)
2016-04-25 09:58:09 +02:00
To post a text message with Html style:
.. code:: python
2016-01-27 11:20:32 +01:00
2016-04-25 10:01:57 +02:00
>>> bot.sendMessage(chat_id=chat_id, text='<b>bold</b> <i>italic</i> <a href="http://google.com">link</a>.', parse_mode=telegram.ParseMode.HTML)
2016-01-27 11:20:32 +01:00
2016-04-25 09:58:09 +02:00
To post an Emoji (special thanks to `Tim Whitlock <http://apps.timwhitlock.info/emoji/tables/unicode>`_):
.. code:: python
2015-07-09 04:35:08 +02:00
>>> bot.sendMessage(chat_id=chat_id, text=telegram.Emoji.PILE_OF_POO)
2015-07-08 22:58:50 +02:00
2016-04-25 09:58:09 +02:00
To post an image file via URL:
.. code:: python
2015-07-11 03:31:04 +02:00
>>> bot.sendPhoto(chat_id=chat_id, photo='https://telegram.org/img/t_logo.png')
2016-04-25 09:58:09 +02:00
To post an image file from disk:
.. code:: python
2016-02-01 18:14:17 +01:00
>>> bot.sendPhoto(chat_id=chat_id, photo=open('tests/test.png', 'rb'))
2016-04-25 09:58:09 +02:00
To post a voice file from disk:
.. code:: python
2015-07-08 22:58:50 +02:00
2015-08-17 16:45:28 +02:00
>>> bot.sendVoice(chat_id=chat_id, voice=open('tests/telegram.ogg', 'rb'))
2015-07-08 22:58:50 +02:00
2016-04-25 09:58:09 +02:00
To tell the user that something is happening on bot's side:
.. code:: python
2015-07-08 22:58:50 +02:00
>>> bot.sendChatAction(chat_id=chat_id, action=telegram.ChatAction.TYPING)
2016-04-25 09:58:09 +02:00
To create `Custom Keyboards <https://core.telegram.org/bots#keyboards>`_:
.. code:: python
2016-04-22 15:34:21 +02:00
>>> custom_keyboard = [[ telegram.KeyboardButton(telegram.Emoji.THUMBS_UP_SIGN),
... telegram.KeyboardButton(telegram.Emoji.THUMBS_DOWN_SIGN) ]]
>>> reply_markup = telegram.ReplyKeyboardMarkup(custom_keyboard)
>>> bot.sendMessage(chat_id=chat_id, text="Stay here, I'll be back.", reply_markup=reply_markup)
2016-04-25 09:58:09 +02:00
To hide `Custom Keyboards <https://core.telegram.org/bots#keyboards>`_:
.. code:: python
>>> reply_markup = telegram.ReplyKeyboardHide()
>>> bot.sendMessage(chat_id=chat_id, text="I'm back.", reply_markup=reply_markup)
2016-04-25 09:58:09 +02:00
To download a file (you will need its ``file_id``):
.. code:: python
2015-09-20 17:28:10 +02:00
>>> file_id = message.voice.file_id
>>> newFile = bot.getFile(file_id)
>>> newFile.download('voice.ogg')
2015-07-08 22:58:50 +02:00
There are many more API methods, to read the full API documentation::
$ pydoc telegram.Bot
-------------
_`Extensions`
-------------
The ``telegram.ext`` submodule is built on top of the bare-metal API. It provides an easy-to-use interface to the ``telegram.Bot`` by caring about getting new updates with the ``Updater`` class from telegram and forwarding them to the ``Dispatcher`` class. We can register handler functions in the ``Dispatcher`` to make our bot react to Telegram commands, messages and even arbitrary updates.
We'll need an Access Token. **Note:** If you have done this in the previous step, you can use that one. To generate an Access Token, we have to talk to `BotFather <https://telegram.me/botfather>`_ and follow a few simple steps (described `here <https://core.telegram.org/bots#botfather>`_).
2016-04-25 09:58:09 +02:00
First, we create an ``Updater`` object:
.. code:: python
>>> from telegram.ext import Updater
>>> updater = Updater(token='token')
2016-04-25 09:58:09 +02:00
For quicker access to the ``Dispatcher`` used by our ``Updater``, we can introduce it locally:
.. code:: python
>>> dispatcher = updater.dispatcher
2016-04-25 09:58:09 +02:00
Now, we need to define a function that should process a specific type of update:
.. code:: python
>>> def start(bot, update):
... bot.sendMessage(chat_id=update.message.chat_id, text="I'm a bot, please talk to me!")
2016-04-25 09:58:09 +02:00
We want this function to be called on a Telegram message that contains the ``/start`` command. To do that, we have to use a ``CommandHandler`` object and register it in the dispatcher:
.. code:: python
2016-04-16 15:20:52 +02:00
>>> from telegram.ext import CommandHandler
>>> start_handler = CommandHandler('start', start)
>>> dispatcher.addHandler(start_handler)
2016-04-25 09:58:09 +02:00
The last step is to tell the ``Updater`` to start working:
.. code:: python
>>> updater.start_polling()
2016-04-25 09:58:09 +02:00
Our bot is now up and running (go ahead and try it)! It's not doing anything yet, besides answering to the ``/start`` command. Let's add another handler that listens for regular messages. We're using the `MessageHandler` here to echo to all text messages:
.. code:: python
>>> def echo(bot, update):
... bot.sendMessage(chat_id=update.message.chat_id, text=update.message.text)
...
2016-04-16 15:20:52 +02:00
>>> from telegram.ext import MessageHandler
>>> from telegram.ext import filters
>>> echo_handler = MessageHandler([filters.TEXT], echo)
>>> dispatcher.addHandler(echo_handler)
2016-04-16 15:20:52 +02:00
Our bot should now reply to all text messages that are not a command with a message that has the same content.
2016-04-25 09:58:09 +02:00
Let's add some functionality to our bot. We want to add the ``/caps`` command, that will take some text as parameter and return it in all caps. We can get the arguments that were passed to a command in the handler function:
.. code:: python
>>> def caps(bot, update, args):
... text_caps = ' '.join(args).upper()
... bot.sendMessage(chat_id=update.message.chat_id, text=text_caps)
...
2016-04-16 15:20:52 +02:00
>>> caps_handler = CommandHandler('caps', caps, pass_args=True)
>>> dispatcher.addHandler(caps_handler)
2016-04-25 09:58:09 +02:00
To enable our bot to respond to inline queries, we can add the following (you will also have to talk to BotFather):
.. code:: python
>>> from telegram import InlineQueryResultArticle
>>> def inline_caps(bot, update):
2016-04-16 15:20:52 +02:00
... query = bot.update.inline_query.query
... results = list()
... results.append(InlineQueryResultArticle(query.upper(), 'Caps', query.upper()))
... bot.answerInlineQuery(update.inline_query.id, results)
...
>>> from telegram.ext import InlineQueryHandler
>>> inline_caps_handler = InlineQueryHandler(inline_caps)
>>> dispatcher.addHandler(inline_caps_handler)
2016-04-25 09:58:09 +02:00
People might try to send commands to the bot that it doesn't understand, so we can use a ``RegexHandler`` to recognize all commands that were not recognized by the previous handlers. **Note:** This handler has to be added last, else it will be triggered before the ``CommandHandlers`` had a chance to look at the update:
.. code:: python
2016-04-16 15:20:52 +02:00
>>> def unknown(bot, update):
... bot.sendMessage(chat_id=update.message.chat_id, text="Sorry, I didn't understand that command.")
...
2016-04-16 15:20:52 +02:00
>>> from telegram.ext import RegexHandler
>>> unknown_handler = RegexHandler(r'/.*', unknown)
>>> dispatcher.addHandler(unknown_handler)
2016-04-25 09:58:09 +02:00
If you're done playing around, stop the bot with this:
.. code:: python
>>> updater.stop()
Check out more examples in the `examples folder <https://github.com/python-telegram-bot/python-telegram-bot/tree/master/examples>`_!
2016-01-04 11:34:47 +01:00
-----------
_`JobQueue`
-----------
2016-04-25 09:58:09 +02:00
The ``JobQueue`` allows you to perform tasks with a delay or even periodically. The ``Updater`` will create one for you:
.. code:: python
2016-01-04 11:34:47 +01:00
>>> from telegram.ext import Updater
2016-01-05 13:32:19 +01:00
>>> u = Updater('TOKEN')
>>> j = u.job_queue
2016-01-04 11:34:47 +01:00
2016-04-25 09:58:09 +02:00
The job queue uses functions for tasks, so we define one and add it to the queue. Usually, when the first job is added to the queue, it wil start automatically. We can prevent this by setting ``prevent_autostart=True``:
.. code:: python
2016-01-04 11:34:47 +01:00
>>> def job1(bot):
... bot.sendMessage(chat_id='@examplechannel', text='One message every minute')
2016-01-05 13:32:19 +01:00
>>> j.put(job1, 60, next_t=0, prevent_autostart=True)
2016-01-04 11:34:47 +01:00
2016-04-25 09:58:09 +02:00
You can also have a job that will not be executed repeatedly:
.. code:: python
2016-01-04 11:34:47 +01:00
>>> def job2(bot):
... bot.sendMessage(chat_id='@examplechannel', text='A single message with 30s delay')
>>> j.put(job2, 30, repeat=False)
2016-04-25 09:58:09 +02:00
Now, because we didn't prevent the auto start this time, the queue will start ticking. It runs in a seperate thread, so it is non-blocking. When we stop the Updater, the related queue will be stopped as well:
.. code:: python
2016-01-05 13:32:19 +01:00
>>> u.stop()
2016-04-25 09:58:09 +02:00
We can also stop the job queue by itself:
.. code:: python
2016-01-04 11:34:47 +01:00
>>> j.stop()
2015-12-22 13:23:59 +01:00
----------
2015-08-09 14:59:41 +02:00
_`Logging`
2015-12-22 13:23:59 +01:00
----------
2015-08-09 14:59:41 +02:00
2016-04-25 09:58:09 +02:00
You can get logs in your main application by calling `logging` and setting the log level you want:
.. code:: python
2015-08-09 14:59:41 +02:00
>>> import logging
>>> logger = logging.getLogger()
>>> logger.setLevel(logging.INFO)
2016-04-25 09:58:09 +02:00
If you want DEBUG logs instead:
.. code:: python
2015-08-09 14:59:41 +02:00
>>> logger.setLevel(logging.DEBUG)
2015-08-11 23:07:32 +02:00
================
_`Documentation`
================
``python-telegram-bot``'s documentation lives at `Read the Docs <https://python-telegram-bot.readthedocs.org/en/latest/>`_.
2015-08-11 23:07:32 +02:00
2016-04-25 09:58:09 +02:00
===============
_`Getting help`
2016-04-25 09:58:09 +02:00
===============
2015-07-11 06:55:33 +02:00
You can get help in several ways:
1. We have a vibrant community of developers helping each other in our `Telegram group <https://telegram.me/pythontelegrambotgroup>`_. Join us!
2. You can ask for help on Stack Overflow using the `python-telegram-bot tag <https://stackoverflow.com/questions/tagged/python-telegram-bot>`_.
3. As last resort, the developers are ready to help you with `serious issues <https://github.com/python-telegram-bot/python-telegram-bot/issues/new>`_.
2015-08-27 02:45:09 +02:00
===============
_`Contributing`
===============
2015-07-08 22:58:50 +02:00
Contributions of all sizes are welcome. Please review our `contribution guidelines <https://github.com/python-telegram-bot/python-telegram-bot/blob/master/CONTRIBUTING.rst>`_ to get started. You can also help by `reporting bugs <https://github.com/python-telegram-bot/python-telegram-bot/issues/new>`_.
2016-04-24 18:39:48 +02:00
==========
_`License`
==========
You may copy, distribute and modify the software provided that modifications are described and licensed for free under `LGPL-3 <https://www.gnu.org/licenses/lgpl-3.0.html>`_. Derivatives works (including modifications or anything statically linked to the library) can only be redistributed under `LGPL-3 <https://www.gnu.org/licenses/lgpl-3.0.html>`_, but applications that use the library don't have to be.