2
0
mirror of https://github.com/pyrogram/pyrogram synced 2025-08-31 06:16:06 +00:00

Update docs

This commit is contained in:
Dan
2020-08-22 16:09:38 +02:00
parent 5f087e5f82
commit 303712f599
14 changed files with 110 additions and 49 deletions

View File

@@ -15,7 +15,7 @@ some of the required arguments.
@app.on_message()
def hello(client, message)
message.reply("hi")
message.reply_text("hi")
app.run()

View File

@@ -1,12 +1,12 @@
Available Types
===============
This page is about Pyrogram types. All types listed here are accessible through the main package directly.
This page is about Pyrogram types. All types listed here are accessible through ``types`` package.
.. code-block:: python
:emphasize-lines: 1
from pyrogram import User, Message, ...
from pyrogram.types import User, Message, ...
.. note::