pyrogram/examples/echo_bot.py
Dan fd306c383d Remove LGPLv3 license notices from example files
Examples are licensed under the terms of CC0 1.0 Universal License
2018-10-09 15:21:36 +02:00

18 lines
488 B
Python

from pyrogram import Client, Filters
"""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.
"""
app = Client("my_account")
@app.on_message(Filters.text & Filters.private)
def echo(client, message):
message.reply(message.text, quote=True)
app.run() # Automatically start() and idle()