mirror of
https://github.com/TeamPGM/pyrogram.git
synced 2024-11-24 15:59:18 +00:00
21 lines
401 B
ReStructuredText
21 lines
401 B
ReStructuredText
hello_world
|
|
===========
|
|
|
|
This example demonstrates a basic API usage
|
|
|
|
.. code-block:: python
|
|
|
|
from pyrogram import Client
|
|
|
|
# Create a new Client instance
|
|
app = Client("my_account")
|
|
|
|
|
|
async def main():
|
|
async with app:
|
|
# Send a message, Markdown is enabled by default
|
|
await app.send_message("me", "Hi there! I'm using **Pyrogram**")
|
|
|
|
|
|
app.run(main())
|