2
0
mirror of https://github.com/pyrogram/pyrogram synced 2025-08-31 14:25:55 +00:00

Merge branch 'layer-104' into develop

This commit is contained in:
Dan
2019-09-07 12:47:25 +02:00
13 changed files with 824 additions and 151 deletions

View File

@@ -128,10 +128,10 @@ def pyrogram_api():
utilities="""
Utilities
start
stop
restart
idle
stop
run
restart
add_handler
remove_handler
stop_transmission
@@ -249,6 +249,22 @@ def pyrogram_api():
set_game_score
get_game_high_scores
""",
authorization="""
Authorization
connect
disconnect
initialize
terminate
send_code
resend_code
sign_in
sign_up
get_password_hint
check_password
send_recovery_code
recover_password
accept_terms_of_service
""",
advanced="""
Advanced
send
@@ -349,6 +365,11 @@ def pyrogram_api():
InputMessageContent
InputMessageContent
InputTextMessageContent
""",
authorization="""
Authorization
SentCode
TermsOfService
"""
)

View File

@@ -106,10 +106,24 @@ Bots
{bots}
Authorization
-------------
.. autosummary::
:nosignatures:
{authorization}
.. toctree::
:hidden:
{authorization}
Advanced
--------
Learn more about these methods at :doc:`Advanced Usage <../../topics/advanced-usage>`.
Methods used only when dealing with the raw Telegram API.
Learn more about how to use the raw API at :doc:`Advanced Usage <../../topics/advanced-usage>`.
.. autosummary::
:nosignatures:

View File

@@ -92,4 +92,17 @@ InputMessageContent
.. toctree::
:hidden:
{input_message_content}
{input_message_content}
Authorization
-------------
.. autosummary::
:nosignatures:
{authorization}
.. toctree::
:hidden:
{authorization}