├── .env-example ├── .gitignore ├── Dockerfile ├── LICENSE ├── PAYLOAD-SERVER.MD ├── README-RU.md ├── README.md ├── bot ├── __init__.py ├── config │ ├── __init__.py │ ├── config.py │ └── proxies.txt ├── core │ ├── TLS.py │ ├── __init__.py │ ├── agents.py │ ├── api.py │ ├── headers.py │ ├── helper.py │ ├── registrator.py │ ├── tapper.py │ └── tg_auth.py ├── exceptions │ ├── __init__.py │ ├── api.py │ └── telegram.py └── utils │ ├── __init__.py │ ├── checkers.py │ ├── launcher.py │ ├── logger.py │ └── payload.py ├── docker-compose.yml ├── main.py ├── requirements.txt ├── run.bat └── run.sh /.env-example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HiddenCodeDevs/BlumTelegramBot/HEAD/.env-example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HiddenCodeDevs/BlumTelegramBot/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HiddenCodeDevs/BlumTelegramBot/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HiddenCodeDevs/BlumTelegramBot/HEAD/LICENSE -------------------------------------------------------------------------------- /PAYLOAD-SERVER.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HiddenCodeDevs/BlumTelegramBot/HEAD/PAYLOAD-SERVER.MD -------------------------------------------------------------------------------- /README-RU.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HiddenCodeDevs/BlumTelegramBot/HEAD/README-RU.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HiddenCodeDevs/BlumTelegramBot/HEAD/README.md -------------------------------------------------------------------------------- /bot/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = '1.9' 2 | -------------------------------------------------------------------------------- /bot/config/__init__.py: -------------------------------------------------------------------------------- 1 | from .config import * 2 | -------------------------------------------------------------------------------- /bot/config/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HiddenCodeDevs/BlumTelegramBot/HEAD/bot/config/config.py -------------------------------------------------------------------------------- /bot/config/proxies.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HiddenCodeDevs/BlumTelegramBot/HEAD/bot/config/proxies.txt -------------------------------------------------------------------------------- /bot/core/TLS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HiddenCodeDevs/BlumTelegramBot/HEAD/bot/core/TLS.py -------------------------------------------------------------------------------- /bot/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bot/core/agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HiddenCodeDevs/BlumTelegramBot/HEAD/bot/core/agents.py -------------------------------------------------------------------------------- /bot/core/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HiddenCodeDevs/BlumTelegramBot/HEAD/bot/core/api.py -------------------------------------------------------------------------------- /bot/core/headers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HiddenCodeDevs/BlumTelegramBot/HEAD/bot/core/headers.py -------------------------------------------------------------------------------- /bot/core/helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HiddenCodeDevs/BlumTelegramBot/HEAD/bot/core/helper.py -------------------------------------------------------------------------------- /bot/core/registrator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HiddenCodeDevs/BlumTelegramBot/HEAD/bot/core/registrator.py -------------------------------------------------------------------------------- /bot/core/tapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HiddenCodeDevs/BlumTelegramBot/HEAD/bot/core/tapper.py -------------------------------------------------------------------------------- /bot/core/tg_auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HiddenCodeDevs/BlumTelegramBot/HEAD/bot/core/tg_auth.py -------------------------------------------------------------------------------- /bot/exceptions/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HiddenCodeDevs/BlumTelegramBot/HEAD/bot/exceptions/__init__.py -------------------------------------------------------------------------------- /bot/exceptions/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HiddenCodeDevs/BlumTelegramBot/HEAD/bot/exceptions/api.py -------------------------------------------------------------------------------- /bot/exceptions/telegram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HiddenCodeDevs/BlumTelegramBot/HEAD/bot/exceptions/telegram.py -------------------------------------------------------------------------------- /bot/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HiddenCodeDevs/BlumTelegramBot/HEAD/bot/utils/__init__.py -------------------------------------------------------------------------------- /bot/utils/checkers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HiddenCodeDevs/BlumTelegramBot/HEAD/bot/utils/checkers.py -------------------------------------------------------------------------------- /bot/utils/launcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HiddenCodeDevs/BlumTelegramBot/HEAD/bot/utils/launcher.py -------------------------------------------------------------------------------- /bot/utils/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HiddenCodeDevs/BlumTelegramBot/HEAD/bot/utils/logger.py -------------------------------------------------------------------------------- /bot/utils/payload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HiddenCodeDevs/BlumTelegramBot/HEAD/bot/utils/payload.py -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HiddenCodeDevs/BlumTelegramBot/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HiddenCodeDevs/BlumTelegramBot/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HiddenCodeDevs/BlumTelegramBot/HEAD/requirements.txt -------------------------------------------------------------------------------- /run.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HiddenCodeDevs/BlumTelegramBot/HEAD/run.bat -------------------------------------------------------------------------------- /run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HiddenCodeDevs/BlumTelegramBot/HEAD/run.sh --------------------------------------------------------------------------------