MTPyroger/examples/raw_update_handler.py
2018-04-14 18:46:54 +02:00

15 lines
213 B
Python

from pyrogram import Client
"""This example shows how to handle raw updates"""
app = Client("my_account")
@app.on_raw_update()
def raw(client, update, users, chats):
print(update)
app.start()
app.idle()