Welcome to Pyrogram =================== .. raw:: html
Pyrogram
Pyrogram

Telegram MTProto API Framework for Python
Development Releases News

.. code-block:: python from pyrogram import Client, filters app = Client("my_account") @app.on_message(filters.private) async def hello(client, message): await message.reply("Hello from Pyrogram!") app.run() **Pyrogram** is a modern, elegant and asynchronous :doc:`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. Support ------- If you'd like to support Pyrogram, you can consider: - `Become a GitHub sponsor `_. - `Become a LiberaPay patron `_. - `Become an OpenCollective backer `_. Key Features ------------ - **Ready**: Install Pyrogram with pip and start building your applications right away. - **Easy**: Makes the Telegram API simple and intuitive, while still allowing advanced usages. - **Elegant**: Low-level details are abstracted and re-presented in a more convenient way. - **Fast**: Boosted up by :doc:`TgCrypto `, a high-performance crypto library written in pure C. - **Type-hinted**: Types and methods are all type-hinted, enabling excellent editor support. - **Async**: Fully asynchronous (also usable synchronously if wanted, for convenience). - **Powerful**: Full access to Telegram's API to execute any official client action and more. 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 :guilabel:`Next` button at the end of each page. Here below you can, instead, find a list of the most relevant pages for a quick access. First Steps ^^^^^^^^^^^ .. hlist:: :columns: 1 - :doc:`Quick Start `: Overview to get you started quickly. - :doc:`Calling Methods `: How to call Pyrogram's methods. - :doc:`Handling Updates `: How to handle Telegram updates. - :doc:`Error Handling `: How to handle API errors correctly. API Reference ^^^^^^^^^^^^^ .. hlist:: :columns: 1 - :doc:`Pyrogram Client `: Reference details about the Client class. - :doc:`Available Methods `: List of available high-level methods. - :doc:`Available Types `: List of available high-level types. - :doc:`Bound Methods `: List of convenient bound methods. Meta ^^^^ .. hlist:: :columns: 1 - :doc:`Pyrogram FAQ `: Answers to common Pyrogram questions. - :doc:`Support Pyrogram `: Ways to show your appreciation. - :doc:`Release Notes `: Release notes for Pyrogram releases. .. toctree:: :hidden: :caption: Introduction intro/quickstart intro/install intro/setup .. toctree:: :hidden: :caption: Getting Started start/auth start/invoking start/updates start/errors start/examples/index .. toctree:: :hidden: :caption: API Reference api/client api/methods/index api/types/index api/bound-methods/index api/handlers api/decorators api/errors/index api/filters .. toctree:: :hidden: :caption: Topic Guides topics/use-filters topics/create-filters topics/more-on-updates topics/config-file topics/smart-plugins topics/client-settings topics/tgcrypto topics/storage-engines topics/text-formatting topics/serializing topics/proxy topics/scheduling topics/mtproto-vs-botapi topics/debugging topics/test-servers topics/advanced-usage topics/voice-calls .. toctree:: :hidden: :caption: Meta faq/index support releases/index .. toctree:: :hidden: :caption: Telegram API telegram/functions/index telegram/types/index telegram/base/index