Skip to content

Latest commit

History

History
19 lines (12 loc) 路 339 Bytes

File metadata and controls

19 lines (12 loc) 路 339 Bytes

Pyrogram Client

This is the Client class. It exposes high-level methods for an easy access to the API.

from pyrogram import Client

app = Client("my_account")

with app:
    app.send_message("me", "Hi!")

Details

.. autoclass:: pyrogram.Client()