dockerbot / ytdlbot /client_init.py
navpan2's picture
Upload 42 files
94ecfcc
raw
history blame contribute delete
437 Bytes
#!/usr/local/bin/python3
# coding: utf-8
# ytdlbot - client_init.py
# 12/29/21 16:20
#
__author__ = "Benny <[email protected]>"
from pyrogram import Client
from config import APP_HASH, APP_ID, PYRO_WORKERS, TOKEN, IPv6
def create_app(name: str, workers: int = PYRO_WORKERS) -> Client:
return Client(
name,
APP_ID,
APP_HASH,
bot_token=TOKEN,
workers=workers,
ipv6=IPv6,
)