pyrofork/docs/source/start/examples/echo_bot.rst
wulan17 8353e5a2a2
Pyrofork: Full rebrand
Signed-off-by: wulan17 <wulan17@nusantararom.org>
2024-02-06 04:41:59 +07:00

21 lines
No EOL
563 B
ReStructuredText

echo_bot
========
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 pyrofork import Client, filters
app = Client("my_account")
@app.on_message(filters.text & filters.private)
async def echo(client, message):
await message.reply(message.text)
app.run() # Automatically start() and idle()