Welcome to wzgram’s documentation!

wzgram is an elegant, modern and asynchronous Telegram MTProto API framework for Python. It is a fork of Pyrogram with support for the latest Telegram features including Gifts, Stories, Topics, Business Accounts, and more.

from pyrogram import Client, filters

app = Client("my_account")

@app.on_message(filters.private)
async def hello(client, message):
    await message.reply("Hello from wzgram!")

app.run()

Topics