pyrogram/docs/source/start/examples/echo_bot.rst

21 lines
563 B
ReStructuredText
Raw Normal View History

2022-04-24 09:56:07 +00:00
echo_bot
========
This simple echo bot replies to every private text message.
2020-08-22 14:09:38 +00:00
It uses the ``@on_message`` decorator to register a ``MessageHandler`` and applies two filters on it:
``filters.text`` and ``filters.private`` to make sure it will reply to private text messages only.
.. code-block:: python
2020-08-22 14:09:38 +00:00
from pyrogram import Client, filters
app = Client("my_account")
2020-08-22 14:09:38 +00:00
@app.on_message(filters.text & filters.private)
2022-04-24 09:56:07 +00:00
async def echo(client, message):
await message.reply(message.text)
app.run() # Automatically start() and idle()