telethon_upload / bot /__init__.py
privateone's picture
Upload 40 files
861d763 verified
raw
history blame contribute delete
352 Bytes
from telethon import TelegramClient
from logging import getLogger
from logging.config import dictConfig
from .config import Telegram, LOGGER_CONFIG_JSON
dictConfig(LOGGER_CONFIG_JSON)
version = 1.5
logger = getLogger('bot')
TelegramBot = TelegramClient(
session='bot',
api_id=Telegram.API_ID,
api_hash=Telegram.API_HASH
)