mirror of
https://github.com/eternnoir/pyTelegramBotAPI.git
synced 2023-08-10 21:12:57 +03:00
commit
e2c20c1e55
@ -146,7 +146,7 @@ Outlined below are some general use cases of the API.
|
|||||||
|
|
||||||
#### Message handlers
|
#### Message handlers
|
||||||
A message handler is a function that is decorated with the `message_handler` decorator of a TeleBot instance. Message handlers consist of one or multiple filters.
|
A message handler is a function that is decorated with the `message_handler` decorator of a TeleBot instance. Message handlers consist of one or multiple filters.
|
||||||
Each filter much return True for a certain message in order for a message handler to become eligible to handle that message. A message handler is declared in the following way (provided `bot` is an instance of TeleBot):
|
Each filter must return True for a certain message in order for a message handler to become eligible to handle that message. A message handler is declared in the following way (provided `bot` is an instance of TeleBot):
|
||||||
```python
|
```python
|
||||||
@bot.message_handler(filters)
|
@bot.message_handler(filters)
|
||||||
def function_name(message):
|
def function_name(message):
|
||||||
|
Loading…
Reference in New Issue
Block a user