Files
TgRestrictedRepostBot/main.py
2025-07-28 17:44:23 +03:00

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())