2
0
mirror of https://github.com/pyrogram/pyrogram synced 2025-08-22 18:07:21 +00:00
pyrogram/docs/source/api/client.rst

17 lines
304 B
ReStructuredText
Raw Normal View History

2019-05-12 19:26:55 +02:00
Pyrogram Client
===============
2019-05-16 21:28:34 +02:00
This class exposes high-level methods for an easy access to the API.
.. code-block:: python
:emphasize-lines: 1-3
from pyrogram import Client
app = Client("my_account")
with app:
app.send_message("me", "Hi!")
2019-05-12 19:26:55 +02:00
.. autoclass:: pyrogram.Client()