mirror of
https://github.com/TeamPGM/pyrogram.git
synced 2024-11-16 12:51:18 +00:00
20 lines
487 B
Python
20 lines
487 B
Python
from pyrogram import Client
|
|
|
|
# Create a new Client
|
|
client = Client("example")
|
|
|
|
# Start the Client
|
|
client.start()
|
|
|
|
# Send a message to yourself, Markdown is enabled by default
|
|
client.send_message("me", "Hi there! I'm using **Pyrogram**")
|
|
|
|
# Send a photo with a formatted caption to yourself
|
|
client.send_photo("me", "data/pyrogram.png", "__This is a formatted__ **caption**")
|
|
|
|
# Send a location to yourself
|
|
client.send_location("me", 51.500729, -0.124583)
|
|
|
|
# Stop the client
|
|
client.stop()
|