@@ -13,16 +13,21 @@ Welcome to Pyrogram
1313 <b >Telegram MTProto API Framework for Python</b >
1414
1515 <br >
16- <a href =" https://docs. pyrogram.ml " >
17- Documentation
16+ <a href =" https://github.com/ pyrogram/pyrogram " >
17+ GitHub
1818 </a >
19+ •
20+ <a href =" https://t.me/PyrogramChat" >
21+ Community
22+ </a >
23+
1924 •
2025 <a href =" https://github.com/pyrogram/pyrogram/releases" >
2126 Changelog
2227 </a >
2328 •
24- <a href =" https://t.me/PyrogramChat " >
25- Community
29+ <a href =" https://pypi.org/project/Pyrogram " >
30+ PyPI
2631 </a >
2732 <br >
2833 <a href =" compiler/api/source/main_api.tl" >
@@ -49,64 +54,69 @@ Welcome to Pyrogram
4954
5055 app.run()
5156
52- Welcome to Pyrogram's Documentation! Here you can find resources for learning how to use the framework.
53- Contents are organized into self-contained topics and can be accessed from the sidebar, or by following them in order
54- using the Next button at the end of each page. But first, here's a brief overview of what is this all about.
55-
56- About
57- -----
58-
5957 **Pyrogram ** is an elegant, easy-to-use Telegram _ client library and framework written from the ground up in Python and C.
6058It enables you to easily create custom apps using both user and bot identities (bot API alternative) via the `MTProto API `_.
6159
62- Features
63- --------
60+ How the documentation is organized
61+ ----------------------------------
62+
63+ Contents are organized into self-contained topics and can be accessed from the sidebar, or by following them in order
64+ using the Next button at the end of each page.
65+
66+ Relevant Pages
67+ ^^^^^^^^^^^^^^
6468
65- - **Easy **: You can install Pyrogram with pip and start building your applications right away.
66- - **Elegant **: Low-level details are abstracted and re-presented in a much nicer and easier way.
67- - **Fast **: Crypto parts are boosted up by TgCrypto _, a high-performance library written in pure C.
68- - **Documented **: Pyrogram API methods, types and public interfaces are well documented.
69- - **Type-hinted **: Exposed Pyrogram types and method parameters are all type-hinted.
70- - **Updated **, to the latest Telegram API version, currently Layer 97 on top of `MTProto 2.0 `_.
71- - **Pluggable **: The Smart Plugin system allows to write components with minimal boilerplate code.
72- - **Comprehensive **: Execute any advanced action an official client is able to do, and even more.
69+ - `Quick Start `_ - Concise steps to get you started as fast as possible.
70+ - `API Usage `_ - Guide on how to use Pyrogram's API.
71+ - `Update Handling `_ - Guide on how to handle Telegram updates.
72+ - Client _ - Reference details about the Client class.
73+ - Types _ - All the available Pyrogram types.
74+ - Methods _ - All the available Pyrogram methods.
7375
74- To get started, press the Next button.
76+ ** To get started, press the Next button **
7577
7678.. toctree ::
7779 :hidden:
78- :caption: Quick Start
80+ :caption: Introduction
7981
80- start/installation
81- start/setup
82- start/usage
82+ intro/start
83+ intro/install
84+ intro/setup
85+ intro/auth
8386
8487.. toctree ::
8588 :hidden:
86- :caption: Resources
87-
88- resources/update-handling
89- resources/using-filters
90- resources/more-on-updates
91- resources/configuration-file
92- resources/smart-plugins
93- resources/auto-authorization
94- resources/customize-sessions
95- resources/tgcrypto
96- resources/text-formatting
97- resources/socks5-proxy
98- resources/bots-interaction
99- resources/error-handling
100- resources/test-servers
101- resources/advanced-usage
102- resources/voice-calls
103- resources/changelog
89+ :caption: Topic Guides
90+
91+ topics/usage
92+ topics/update-handling
93+ topics/using-filters
94+ topics/more-on-updates
95+ topics/configuration-file
96+ topics/smart-plugins
97+ topics/auto-authorization
98+ topics/customize-sessions
99+ topics/tgcrypto
100+ topics/text-formatting
101+ topics/socks5-proxy
102+ topics/bots-interaction
103+ topics/error-handling
104+ topics/test-servers
105+ topics/advanced-usage
106+ topics/voice-calls
107+ topics/changelog
104108
105109.. toctree ::
106110 :hidden:
107- :caption: Main Package
111+ :caption: API Reference
108112
109- pyrogram/index
113+ core/client
114+ core/types
115+ core/methods
116+ core/handlers
117+ core/decorators
118+ core/filters
119+ core/errors
110120
111121.. toctree ::
112122 :hidden:
@@ -115,7 +125,12 @@ To get started, press the Next button.
115125 functions/index
116126 types/index
117127
118- .. _ `Telegram` : https://telegram.org
128+ .. _ Telegram : https://telegram.org
119129.. _TgCrypto : https://docs.pyrogram.ml/resources/TgCrypto
120- .. _`MTProto API` : https://core.telegram.org/api#telegram-api
121- .. _`MTProto 2.0` : https://core.telegram.org/mtproto
130+ .. _MTProto API : https://core.telegram.org/api#telegram-api
131+ .. _Quick Start : intro/start.html
132+ .. _API Usage : topics/usage.html
133+ .. _Update Handling : topics/update-handling.html
134+ .. _Client : core/client.html
135+ .. _Types : core/types.html
136+ .. _Methods : core/methods
0 commit comments