2
0
mirror of https://github.com/pyrogram/pyrogram synced 2025-08-31 06:16:06 +00:00

Update examples

This commit is contained in:
Dan
2019-04-13 16:02:31 +02:00
parent 6ad9caa7c6
commit 0d5724164c
8 changed files with 65 additions and 12 deletions

17
examples/echobot.py Normal file
View File

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