mirror of
https://github.com/python-telegram-bot/python-telegram-bot.git
synced 2024-11-21 22:56:38 +01:00
Updated Types of Handlers (markdown)
parent
b1fa41eb2f
commit
c32981872c
1 changed files with 1 additions and 0 deletions
|
@ -1,4 +1,5 @@
|
|||
A `Handler` is an instance derived from the base class [telegram.ext.Handler](https://python-telegram-bot.readthedocs.io/en/latest/telegram.ext.handler.html#telegram.ext.Handler) which is responsible for the routing of different kinds of updates (text, audio, inlinequery, button presses, ...) to their _corresponding callback function_ in your code.
|
||||
|
||||
For example, if you want your bot to respond to the command `/start`, you can use a [CommandHandler](https://python-telegram-bot.readthedocs.io/en/latest/telegram.ext.commandhandler.html) that maps the input to a callback named `my_start_callback`:
|
||||
```
|
||||
def my_start_callback(bot, update):
|
||||
|
|
Loading…
Reference in a new issue