├── .env-example ├── .github └── images │ └── demo.png ├── .gitignore ├── Dockerfile ├── INSTALL.bat ├── INSTALL.sh ├── README-RU.md ├── README.md ├── START.bat ├── START.sh ├── bot ├── __init__.py ├── config │ ├── __init__.py │ ├── config.py │ └── proxies.txt ├── core │ ├── __init__.py │ ├── claimer.py │ ├── headers.py │ └── registrator.py ├── exceptions │ └── __init__.py └── utils │ ├── __init__.py │ ├── launcher.py │ └── logger.py ├── docker-compose.yml ├── main.py └── requirements.txt /.env-example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexell/ClaytonBOT/HEAD/.env-example -------------------------------------------------------------------------------- /.github/images/demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexell/ClaytonBOT/HEAD/.github/images/demo.png -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexell/ClaytonBOT/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexell/ClaytonBOT/HEAD/Dockerfile -------------------------------------------------------------------------------- /INSTALL.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexell/ClaytonBOT/HEAD/INSTALL.bat -------------------------------------------------------------------------------- /INSTALL.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexell/ClaytonBOT/HEAD/INSTALL.sh -------------------------------------------------------------------------------- /README-RU.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexell/ClaytonBOT/HEAD/README-RU.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexell/ClaytonBOT/HEAD/README.md -------------------------------------------------------------------------------- /START.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexell/ClaytonBOT/HEAD/START.bat -------------------------------------------------------------------------------- /START.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexell/ClaytonBOT/HEAD/START.sh -------------------------------------------------------------------------------- /bot/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = '1.0' 2 | -------------------------------------------------------------------------------- /bot/config/__init__.py: -------------------------------------------------------------------------------- 1 | from .config import settings 2 | -------------------------------------------------------------------------------- /bot/config/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexell/ClaytonBOT/HEAD/bot/config/config.py -------------------------------------------------------------------------------- /bot/config/proxies.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexell/ClaytonBOT/HEAD/bot/config/proxies.txt -------------------------------------------------------------------------------- /bot/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bot/core/claimer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexell/ClaytonBOT/HEAD/bot/core/claimer.py -------------------------------------------------------------------------------- /bot/core/headers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexell/ClaytonBOT/HEAD/bot/core/headers.py -------------------------------------------------------------------------------- /bot/core/registrator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexell/ClaytonBOT/HEAD/bot/core/registrator.py -------------------------------------------------------------------------------- /bot/exceptions/__init__.py: -------------------------------------------------------------------------------- 1 | class InvalidSession(BaseException): 2 | ... 3 | -------------------------------------------------------------------------------- /bot/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexell/ClaytonBOT/HEAD/bot/utils/__init__.py -------------------------------------------------------------------------------- /bot/utils/launcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexell/ClaytonBOT/HEAD/bot/utils/launcher.py -------------------------------------------------------------------------------- /bot/utils/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexell/ClaytonBOT/HEAD/bot/utils/logger.py -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexell/ClaytonBOT/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexell/ClaytonBOT/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alexell/ClaytonBOT/HEAD/requirements.txt --------------------------------------------------------------------------------