2
0
mirror of https://github.com/pyrogram/pyrogram synced 2025-08-24 10:58:29 +00:00
pyrogram/examples/hello_world.py
Dan fd306c383d Remove LGPLv3 license notices from example files
Examples are licensed under the terms of CC0 1.0 Universal License
2018-10-09 15:21:36 +02:00

19 lines
445 B
Python

from pyrogram import Client
"""This example demonstrates a basic API usage"""
# Create a new Client instance
app = Client("my_account")
# Start the Client before calling any API method
app.start()
# Send a message to yourself, Markdown is enabled by default
app.send_message("me", "Hi there! I'm using **Pyrogram**")
# Send a location to yourself
app.send_location("me", 51.500729, -0.124583)
# Stop the client when you're done
app.stop()