BasicHfBot / bot /client.py
understanding's picture
Create bot/client.py
83d77bb verified
raw
history blame
324 Bytes
from __future__ import annotations
from hydrogram import Client
from app.config import Config
def build_bot(cfg: Config) -> Client:
return Client(
name="yt_uploader_bot",
api_id=cfg.API_ID,
api_hash=cfg.API_HASH,
bot_token=cfg.BOT_TOKEN,
in_memory=True,
workers=20,
)