1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- # -*- coding: utf-8 -*-
- # - logging - #
- LOGLEVEL: str = 'DEBUG'
- TIMEFMT: str = '%d.%m.%Y %H:%M:%S'
- LOGFMT: str = '%(asctime)s:%(name)s:%(levelname)s -> %(message)s'
- # - telegram - #
- API_ID: int = 1010101
- API_HASH: str = 'api hash'
- TOKEN: str = 'bot token'
- CHAT_ID: int = 10101010101
- '''default chat (also chat id can by specified locally for each channel)'''
- ATEMPTS: int = 2
- '''
- if number of attempts to get videos info will be bigger than `ATTEMPTS`, than
- you will be notified from bot
- '''
- # - invidous - #
- INSTANCE = None
- '''
- if None, than will be selected automatically
- or you can manually specify preferred instance:
- INSTANCE = 'https://invidiou.site'
- '''
- # - aiohttp - #
- USER_AGENT: str =\
- 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) Gecko/20100101 Firefox/72.0'
- # - database - #
- DB_PATH = 'lives.sdb' # path to database
- # - channels - #
- CHANNELS_PATH = 'channels.json' # path to channels file
|