68 lines
1.8 KiB
ReStructuredText
68 lines
1.8 KiB
ReStructuredText
Decorators
|
|
==========
|
|
|
|
While still being methods bound to the :class:`~pyrogram.Client` class, decorators are of a special kind and thus
|
|
deserve a dedicated page.
|
|
|
|
Decorators are able to register callback functions for handling updates in a much easier and cleaner way compared to
|
|
:doc:`Handlers <handlers>`; they do so by instantiating the correct handler and calling
|
|
:meth:`~pyrogram.Client.add_handler` automatically. All you need to do is adding the decorators on top of your
|
|
functions.
|
|
|
|
.. code-block:: python
|
|
:emphasize-lines: 6
|
|
|
|
from pyrogram import Client
|
|
|
|
app = Client("my_account")
|
|
|
|
|
|
@app.on_message()
|
|
def log(client, message):
|
|
print(message)
|
|
|
|
|
|
app.run()
|
|
|
|
.. contents:: Contents
|
|
:backlinks: none
|
|
:depth: 1
|
|
:local:
|
|
|
|
-----
|
|
|
|
.. currentmodule:: pyrogram
|
|
|
|
Index
|
|
-----
|
|
|
|
.. hlist::
|
|
:columns: 3
|
|
|
|
- :meth:`~Client.on_message`
|
|
- :meth:`~Client.on_callback_query`
|
|
- :meth:`~Client.on_inline_query`
|
|
- :meth:`~Client.on_chosen_inline_result`
|
|
- :meth:`~Client.on_chat_member_updated`
|
|
- :meth:`~Client.on_deleted_messages`
|
|
- :meth:`~Client.on_user_status`
|
|
- :meth:`~Client.on_poll`
|
|
- :meth:`~Client.on_disconnect`
|
|
- :meth:`~Client.on_raw_update`
|
|
|
|
-----
|
|
|
|
Details
|
|
-------
|
|
|
|
.. Decorators
|
|
.. autodecorator:: pyrogram.Client.on_message()
|
|
.. autodecorator:: pyrogram.Client.on_callback_query()
|
|
.. autodecorator:: pyrogram.Client.on_inline_query()
|
|
.. autodecorator:: pyrogram.Client.on_chosen_inline_result()
|
|
.. autodecorator:: pyrogram.Client.on_chat_member_updated()
|
|
.. autodecorator:: pyrogram.Client.on_deleted_messages()
|
|
.. autodecorator:: pyrogram.Client.on_user_status()
|
|
.. autodecorator:: pyrogram.Client.on_poll()
|
|
.. autodecorator:: pyrogram.Client.on_disconnect()
|
|
.. autodecorator:: pyrogram.Client.on_raw_update() |