2
0
mirror of https://github.com/pyrogram/pyrogram synced 2025-08-23 02:17:21 +00:00

21 lines
554 B
ReStructuredText
Raw Normal View History

echobot
=======
This simple echo bot replies to every private text message.
2020-08-22 16:09:38 +02: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 16:09:38 +02:00
from pyrogram import Client, filters
app = Client("my_account")
2020-08-22 16:09:38 +02:00
@app.on_message(filters.text & filters.private)
def echo(client, message):
2020-08-22 16:09:38 +02:00
message.reply_text(message.text)
app.run() # Automatically start() and idle()