mirror of
https://github.com/TeamPGM/pyrogram.git
synced 2024-11-16 20:59:29 +00:00
21 lines
554 B
ReStructuredText
21 lines
554 B
ReStructuredText
echobot
|
|
=======
|
|
|
|
This simple echo bot replies to every private text message.
|
|
|
|
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
|
|
|
|
from pyrogram import Client, filters
|
|
|
|
app = Client("my_account")
|
|
|
|
|
|
@app.on_message(filters.text & filters.private)
|
|
def echo(client, message):
|
|
message.reply_text(message.text)
|
|
|
|
|
|
app.run() # Automatically start() and idle() |