diff --git a/examples/hello_world.py b/examples/hello_world.py index 386cd38b..2f98508c 100644 --- a/examples/hello_world.py +++ b/examples/hello_world.py @@ -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()