Welcome to Kurimuzon’s Pyrogram Fork#
Telegram MTProto API Framework for Python
Development
import asyncio
from pyrogram import Client, filters
from pyrogram.handlers import MessageHandler
async def hello(client, message):
await message.reply("Hello from Pyrogram!")
async def main():
# You should ALWAYS create client instance inside async function
# or you might run into problems.
# For example: You can't upload any file to telegram servers (send_photo, send_document, etc.)
app = Client("my_account")
app.add_handler(MessageHandler(hello, filters.private))
loop = asyncio.get_event_loop()
loop.run_until_complete(main())
Pyrogram is a modern, elegant and asynchronous MTProto API framework. It enables you to easily interact with the main Telegram API through a user account (custom client) or a bot identity (bot API alternative) using Python.
How the Documentation is Organized#
Contents are organized into sections composed of self-contained topics which can be all accessed from the sidebar, or by following them in order using the Next button at the end of each page. You can also switch to Dark or Light theme or leave on Auto (follows system preferences) by using the dedicated button in the top left corner.
Here below you can, instead, find a list of the most relevant pages for a quick access.
First Steps#
|
API Reference#
|
Meta#
|