mirror of
https://github.com/Mayuri-Chan/pyrofork.git
synced 2026-01-03 14:04:51 +00:00
Update hello_world.py
This commit is contained in:
parent
2e60457295
commit
849b42b444
1 changed files with 5 additions and 5 deletions
|
|
@ -1,16 +1,16 @@
|
|||
from pyrogram import Client
|
||||
|
||||
# Create a new Client
|
||||
client = Client("example")
|
||||
app = Client("my_account")
|
||||
|
||||
# Start the Client
|
||||
client.start()
|
||||
app.start()
|
||||
|
||||
# Send a message to yourself, Markdown is enabled by default
|
||||
client.send_message("me", "Hi there! I'm using **Pyrogram**")
|
||||
app.send_message("me", "Hi there! I'm using **Pyrogram**")
|
||||
|
||||
# Send a location to yourself
|
||||
client.send_location("me", 51.500729, -0.124583)
|
||||
app.send_location("me", 51.500729, -0.124583)
|
||||
|
||||
# Stop the client
|
||||
client.stop()
|
||||
app.stop()
|
||||
|
|
|
|||
Loading…
Reference in a new issue