mirror of
https://github.com/TeamPGM/pyrogram.git
synced 2024-11-17 05:08:02 +00:00
538f1e3972
- Pyrogram core is now fully asynchronous - Ditched Python 3.5, welcome 3.6 as minimum version. - Moved all types to pyrogram.types - Turned the Filters class into a module (filters) - Moved all filters to pyrogram.filters - Moved all handlers to pyrogram.handlers - Moved all emoji to pyrogram.emoji - Renamed pyrogram.api to pyrogram.raw - Clock is now synced with server's time - Telegram schema updated to Layer 117 - Greatly improved the TL compiler (proper type-constructor hierarchy) - Added "do not edit" warning in generated files - Crypto parts are executed in a thread pool to avoid blocking the event loop - idle() is now a separate function (it doesn't deal with Client instances) - Async storage, async filters and async progress callback (optional, can be sync too) - Added getpass back, for hidden password inputs
64 lines
1.3 KiB
ReStructuredText
64 lines
1.3 KiB
ReStructuredText
Update Handlers
|
|
===============
|
|
|
|
Handlers are used to instruct Pyrogram about which kind of updates you'd like to handle with your callback functions.
|
|
For a much more convenient way of registering callback functions have a look at :doc:`Decorators <decorators>` instead.
|
|
|
|
.. code-block:: python
|
|
:emphasize-lines: 1, 10
|
|
|
|
from pyrogram import Client
|
|
from pyrogram.handlers import MessageHandler
|
|
|
|
app = Client("my_account")
|
|
|
|
|
|
def dump(client, message):
|
|
print(message)
|
|
|
|
|
|
app.add_handler(MessageHandler(dump))
|
|
|
|
app.run()
|
|
|
|
.. contents:: Contents
|
|
:backlinks: none
|
|
:depth: 1
|
|
:local:
|
|
|
|
-----
|
|
|
|
.. currentmodule:: pyrogram.handlers
|
|
|
|
Index
|
|
-----
|
|
|
|
.. hlist::
|
|
:columns: 3
|
|
|
|
- :class:`MessageHandler`
|
|
- :class:`DeletedMessagesHandler`
|
|
- :class:`CallbackQueryHandler`
|
|
- :class:`InlineQueryHandler`
|
|
- :class:`ChosenInlineResultHandler`
|
|
- :class:`UserStatusHandler`
|
|
- :class:`PollHandler`
|
|
- :class:`DisconnectHandler`
|
|
- :class:`RawUpdateHandler`
|
|
|
|
-----
|
|
|
|
Details
|
|
-------
|
|
|
|
.. Handlers
|
|
.. autoclass:: MessageHandler()
|
|
.. autoclass:: DeletedMessagesHandler()
|
|
.. autoclass:: CallbackQueryHandler()
|
|
.. autoclass:: InlineQueryHandler()
|
|
.. autoclass:: ChosenInlineResultHandler()
|
|
.. autoclass:: UserStatusHandler()
|
|
.. autoclass:: PollHandler()
|
|
.. autoclass:: DisconnectHandler()
|
|
.. autoclass:: RawUpdateHandler()
|