2018-01-15 11:36:03 +00:00
|
|
|
Welcome to Pyrogram
|
|
|
|
===================
|
|
|
|
|
2017-12-30 18:47:18 +00:00
|
|
|
.. raw:: html
|
|
|
|
|
2017-12-31 10:03:10 +00:00
|
|
|
<div align="center">
|
2018-03-22 12:01:18 +00:00
|
|
|
<a href="https://docs.pyrogram.ml">
|
|
|
|
<div><img src="https://media.pyrogram.ml/images/icon.png" alt="Pyrogram Icon"></div>
|
|
|
|
<div><img src="https://media.pyrogram.ml/images/label.png" alt="Pyrogram Label"></div>
|
2018-01-01 12:55:05 +00:00
|
|
|
</a>
|
2017-12-31 10:03:10 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<p align="center">
|
|
|
|
<b>Telegram MTProto API Client Library for Python</b>
|
2018-01-13 16:09:25 +00:00
|
|
|
<br>
|
2018-01-25 12:47:26 +00:00
|
|
|
<a href="https://github.com/pyrogram/pyrogram/releases/latest">
|
2018-01-13 16:09:25 +00:00
|
|
|
Download
|
|
|
|
</a>
|
|
|
|
•
|
|
|
|
<a href="https://github.com/pyrogram/pyrogram">
|
|
|
|
Source code
|
|
|
|
</a>
|
|
|
|
•
|
|
|
|
<a href="https://t.me/PyrogramChat">
|
|
|
|
Community
|
|
|
|
</a>
|
2018-01-10 19:56:43 +00:00
|
|
|
<br><br>
|
2018-01-13 16:09:25 +00:00
|
|
|
<a href="https://github.com/pyrogram/pyrogram/blob/master/compiler/api/source/main_api.tl">
|
2018-03-22 12:01:18 +00:00
|
|
|
<img src="https://media.pyrogram.ml/images/scheme.svg"
|
2018-01-20 15:23:10 +00:00
|
|
|
alt="Scheme Layer 75">
|
2018-01-10 19:56:43 +00:00
|
|
|
</a>
|
2018-02-17 13:44:59 +00:00
|
|
|
<a href="https://github.com/pyrogram/tgcrypto">
|
2018-03-22 12:01:18 +00:00
|
|
|
<img src="https://media.pyrogram.ml/images/tgcrypto.svg"
|
2018-02-17 13:44:59 +00:00
|
|
|
alt="TgCrypto">
|
2018-01-10 19:56:43 +00:00
|
|
|
</a>
|
2017-12-31 10:03:10 +00:00
|
|
|
</p>
|
2017-12-30 18:47:18 +00:00
|
|
|
|
2018-01-10 19:56:43 +00:00
|
|
|
About
|
2018-01-15 11:36:03 +00:00
|
|
|
-----
|
2018-01-10 19:56:43 +00:00
|
|
|
|
2018-03-26 01:58:10 +00:00
|
|
|
Welcome to Pyrogram's Documentation! Here you can find resources for learning how to use the library.
|
|
|
|
Contents are organized by topic and can be accessed from the sidebar, or by following them one by one using the Next
|
|
|
|
button at the end of each page. But first, here's a brief overview of what is this all about:
|
|
|
|
|
2018-03-24 13:47:20 +00:00
|
|
|
**Pyrogram** is a brand new Telegram_ Client Library written from the ground up in Python and C. It can be used for building
|
|
|
|
custom Telegram applications in Python that interact with the MTProto API as both User and Bot.
|
2018-01-10 19:56:43 +00:00
|
|
|
|
2018-03-24 13:47:20 +00:00
|
|
|
.. code-block:: python
|
2018-01-10 19:56:43 +00:00
|
|
|
|
2018-03-24 13:47:20 +00:00
|
|
|
from pyrogram import Client
|
2018-01-10 19:56:43 +00:00
|
|
|
|
2018-03-24 13:47:20 +00:00
|
|
|
client = Client("example")
|
|
|
|
client.start()
|
2018-02-08 15:50:04 +00:00
|
|
|
|
2018-03-24 13:47:20 +00:00
|
|
|
client.send_message("me", "Hi there! I'm using Pyrogram")
|
2018-01-10 19:56:43 +00:00
|
|
|
|
2018-03-24 13:47:20 +00:00
|
|
|
client.stop()
|
2018-01-10 19:56:43 +00:00
|
|
|
|
2018-03-24 13:47:20 +00:00
|
|
|
Features
|
|
|
|
--------
|
2018-01-10 19:56:43 +00:00
|
|
|
|
2018-03-24 13:47:20 +00:00
|
|
|
- **Easy to setup**: Pyrogram can be easily installed using pip and requires very few lines of code to get started with.
|
2017-12-30 18:47:18 +00:00
|
|
|
|
2018-03-24 13:47:20 +00:00
|
|
|
- **Easy to use**: Pyrogram provides idiomatic, clean and readable Python code making the Telegram API simple to use.
|
2018-01-06 11:18:15 +00:00
|
|
|
|
2018-03-24 13:47:20 +00:00
|
|
|
- **High-level**: Pyrogram automatically handles all the low-level details of communication with Telegram servers.
|
2018-01-06 11:18:15 +00:00
|
|
|
|
2018-03-24 13:47:20 +00:00
|
|
|
- **Updated**: Pyrogram makes use of the latest Telegram MTProto API version, currently Layer 76.
|
2018-01-06 11:18:15 +00:00
|
|
|
|
2018-03-24 13:47:20 +00:00
|
|
|
- **Fast**: Pyrogram critical parts are boosted up by `TgCrypto`_, a high-performance Crypto Library written in pure C.
|
2018-01-06 11:18:15 +00:00
|
|
|
|
2018-03-24 13:47:20 +00:00
|
|
|
- **Documented**: Pyrogram API methods are documented and resemble the well established Telegram Bot API,
|
|
|
|
thus offering a familiar look to Bot developers.
|
2018-01-06 11:18:15 +00:00
|
|
|
|
2018-03-24 13:47:20 +00:00
|
|
|
- **Full API support**: Beside the simple Bot API-like methods, Pyrogram also provides an easy access to every single
|
|
|
|
Telegram MTProto API method allowing you to programmatically execute any action an official client is able to do, and more.
|
2018-01-06 11:18:15 +00:00
|
|
|
|
2018-03-26 01:58:10 +00:00
|
|
|
To get started, press the Next button.
|
|
|
|
|
2018-01-06 11:18:15 +00:00
|
|
|
.. toctree::
|
|
|
|
:hidden:
|
|
|
|
:caption: Getting Started
|
|
|
|
|
2018-02-08 16:01:17 +00:00
|
|
|
start/QuickInstallation
|
|
|
|
start/ProjectSetup
|
|
|
|
start/BasicUsage
|
2018-01-06 11:18:15 +00:00
|
|
|
|
|
|
|
.. toctree::
|
|
|
|
:hidden:
|
|
|
|
:caption: Resources
|
|
|
|
|
|
|
|
resources/TextFormatting
|
|
|
|
resources/UpdateHandling
|
|
|
|
resources/ErrorHandling
|
2018-02-08 16:04:10 +00:00
|
|
|
resources/SOCKS5Proxy
|
2018-01-25 12:47:26 +00:00
|
|
|
resources/AutoAuthorization
|
2018-02-17 13:44:59 +00:00
|
|
|
resources/TgCrypto
|
2018-02-27 15:54:33 +00:00
|
|
|
resources/BotsInteraction
|
2017-12-30 18:47:18 +00:00
|
|
|
|
|
|
|
.. toctree::
|
2018-01-06 11:18:15 +00:00
|
|
|
:hidden:
|
2018-01-04 02:05:16 +00:00
|
|
|
:caption: Main Package
|
2018-01-03 17:26:05 +00:00
|
|
|
|
2018-01-04 02:05:16 +00:00
|
|
|
pyrogram/index
|
2018-01-03 17:26:05 +00:00
|
|
|
|
|
|
|
.. toctree::
|
2018-01-06 11:18:15 +00:00
|
|
|
:hidden:
|
|
|
|
:caption: Telegram API
|
2018-01-03 17:26:05 +00:00
|
|
|
|
2018-01-03 17:36:23 +00:00
|
|
|
functions/index
|
2018-01-03 17:26:05 +00:00
|
|
|
types/index
|
2018-01-13 16:09:25 +00:00
|
|
|
|
2018-03-24 13:47:20 +00:00
|
|
|
.. _`Telegram`: https://telegram.org/
|
2018-01-13 16:09:25 +00:00
|
|
|
|
2018-02-17 14:44:53 +00:00
|
|
|
.. _TgCrypto: https://docs.pyrogram.ml/resources/TgCrypto/
|