File size: 437 Bytes
94ecfcc |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
#!/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,
)
|