MTPyroger/examples/raw_updates.py
2019-01-07 10:34:38 +01:00

14 lines
236 B
Python

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