├── .gitignore ├── README.md ├── TellarBot ├── __init__.py ├── __main__.py ├── plugins │ ├── __init__.py │ ├── checker.py │ └── classes.py └── sample_config.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragSama/TellarRobot/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragSama/TellarRobot/HEAD/README.md -------------------------------------------------------------------------------- /TellarBot/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragSama/TellarRobot/HEAD/TellarBot/__init__.py -------------------------------------------------------------------------------- /TellarBot/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragSama/TellarRobot/HEAD/TellarBot/__main__.py -------------------------------------------------------------------------------- /TellarBot/plugins/__init__.py: -------------------------------------------------------------------------------- 1 | TO_LOAD = ['checker', 'classes'] 2 | -------------------------------------------------------------------------------- /TellarBot/plugins/checker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragSama/TellarRobot/HEAD/TellarBot/plugins/checker.py -------------------------------------------------------------------------------- /TellarBot/plugins/classes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragSama/TellarRobot/HEAD/TellarBot/plugins/classes.py -------------------------------------------------------------------------------- /TellarBot/sample_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragSama/TellarRobot/HEAD/TellarBot/sample_config.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | telethon 2 | apscheduler 3 | --------------------------------------------------------------------------------