Update Usage page

This commit is contained in:
Dan 2018-06-22 13:27:43 +02:00
parent 478f757689
commit fa65abf276

View File

@ -14,7 +14,7 @@ named after the `Telegram Bot API`_.
In this case, you must use the `Raw Functions`_. Meanwhile, feel free to join our Community_ if you get stuck In this case, you must use the `Raw Functions`_. Meanwhile, feel free to join our Community_ if you get stuck
or want to propose a new method! or want to propose a new method!
Examples: Examples (more on `GitHub <https://github.com/pyrogram/pyrogram/tree/develop/examples>`_):
- Get information about the authorized user: - Get information about the authorized user:
@ -49,15 +49,17 @@ method provided by the Client class.
re-implemented by providing a much simpler and cleaner interface which is very similar to the Bot API. re-implemented by providing a much simpler and cleaner interface which is very similar to the Bot API.
If you think a raw function should be wrapped and added as a high-level method, feel free to ask in our Community_! If you think a raw function should be wrapped and added as a high-level method, feel free to ask in our Community_!
Examples: Examples (more on `GitHub <https://github.com/pyrogram/pyrogram/tree/develop/examples>`_):
- Update first name, last name and bio: - Update first name, last name and bio:
.. code-block:: python .. code-block:: python
from pyrogram import Client
from pyrogram.api import functions from pyrogram.api import functions
... app = Client("my_account")
app.start()
app.send( app.send(
functions.account.UpdateProfile( functions.account.UpdateProfile(
@ -66,13 +68,17 @@ Examples:
) )
) )
app.stop()
- Share your Last Seen time only with your contacts: - Share your Last Seen time only with your contacts:
.. code-block:: python .. code-block:: python
from pyrogram import Client
from pyrogram.api import functions, types from pyrogram.api import functions, types
... app = Client("my_account")
app.start()
app.send( app.send(
functions.account.SetPrivacy( functions.account.SetPrivacy(
@ -81,13 +87,17 @@ Examples:
) )
) )
app.stop()
- Invite users to your channel/supergroup: - Invite users to your channel/supergroup:
.. code-block:: python .. code-block:: python
from pyrogram import Client
from pyrogram.api import functions, types from pyrogram.api import functions, types
... app = Client("my_account")
app.start()
app.send( app.send(
functions.channels.InviteToChannel( functions.channels.InviteToChannel(
@ -100,6 +110,8 @@ Examples:
) )
) )
app.stop()
.. _methods: ../pyrogram/Client.html#available-methods .. _methods: ../pyrogram/Client.html#available-methods
.. _plenty of them: ../pyrogram/Client.html#available-methods .. _plenty of them: ../pyrogram/Client.html#available-methods
.. _types: ../pyrogram/types/index.html .. _types: ../pyrogram/types/index.html