sticker-captcha-bot/sticker/bot.py

16 lines
326 B
Python
Raw Permalink Normal View History

2024-11-11 08:57:10 +00:00
import pyromod.listen
from pyrogram import Client
from sticker.config import Config
bot = Client(
"sticker",
bot_token=Config.BOT_TOKEN,
session_string=Config.STRING_SESSION,
api_id=Config.API_ID,
api_hash=Config.API_HASH,
ipv6=Config.IPV6,
proxy=Config.PROXY,
plugins={"root": "plugins"},
)