13 lines
239 B
Python
13 lines
239 B
Python
import asyncio
|
|
|
|
from pyrogram import Client
|
|
|
|
from config import APP_HASH, APP_ID
|
|
|
|
|
|
async def main():
|
|
async with Client("my_account", APP_ID, APP_HASH) as app:
|
|
await app.send_message("me", "Hello, world2!")
|
|
|
|
asyncio.run(main())
|