Pyrogram for MTPager for testing purposes
Go to file
Dan d4c07304d0 Allow copying bots' messages reply markups
Even though this often requires a user account to fetch other bots' messages
2020-12-25 12:42:27 +01:00
.github Add github.com/delivrance to FUNDING.yml 2020-11-20 03:27:54 +01:00
compiler Allow passing False instead of None for optional flag-boolean parameters 2020-12-25 12:16:20 +01:00
docs Fix sitemap.py breaking after moving it inside the scripts folder 2020-12-23 14:21:10 +01:00
pyrogram Allow copying bots' messages reply markups 2020-12-25 12:42:27 +01:00
tests Improve test coverage 2020-11-27 14:13:34 +01:00
.gitignore .gitignore docs generated files 2020-08-23 07:35:07 +02:00
COPYING
COPYING.lesser
dev-requirements.txt Make use of tox for tests 2020-11-20 01:23:16 +01:00
MANIFEST.in Remove non-python files 2020-12-20 18:29:01 +01:00
NOTICE
README.md
requirements.txt
setup.py Exclude the tests folder from binary distributions 2020-12-23 16:19:02 +01:00
tox.ini Make use of tox for tests 2020-11-20 01:23:16 +01:00

Pyrogram
Telegram MTProto API Framework for Python
Documentation Releases Community

Pyrogram

from pyrogram import Client, filters

app = Client("my_account")


@app.on_message(filters.private)
async def hello(client, message):
    await message.reply_text(f"Hello {message.from_user.mention}")


app.run()

Pyrogram is a modern, elegant and easy-to-use Telegram framework written from the ground up in Python and C. It enables you to easily create custom apps for both user and bot identities (bot API alternative) via the MTProto API.

Features

  • Easy: You can install Pyrogram with pip and start building your applications right away.
  • Elegant: Low-level details are abstracted and re-presented in a much nicer and easier way.
  • Fast: Crypto parts are boosted up by TgCrypto, a high-performance library written in pure C.
  • Asynchronous: Allows both synchronous and asynchronous models to fit all usage needs.
  • Documented: API methods, types and public interfaces are all well documented.
  • Type-hinted: Types and methods are all type-hinted, enabling excellent editor support.
  • Updated, to make use of the latest Telegram API version and features.
  • Bot API-like: Similar to the Bot API in its simplicity, but much more powerful and detailed.
  • Pluggable: The Smart Plugin system allows to write components with minimal boilerplate code.
  • Comprehensive: Execute any advanced action an official client is able to do, and even more.

Requirements

Installing

pip3 install pyrogram

Resources