├── .flake8 ├── .gitignore ├── .rsyncignore ├── LICENSE ├── Pipfile ├── Pipfile.lock ├── README.md ├── logs └── README.md ├── scripts ├── bot_down.py ├── systemd │ ├── creationDate-watcher.path.example │ ├── creationDate-watcher.service.example │ └── creationDate.service.example ├── telethon_interactive.py └── telethon_setup.py └── src ├── config.json.example ├── data └── dates.json.example ├── handlers ├── admin.py ├── app.py ├── callback.py ├── excepts.py └── service.py ├── main.py ├── middles └── userbot.py ├── process ├── database.py ├── function.py └── utility.py └── ui └── replies.json /.flake8: -------------------------------------------------------------------------------- 1 | [flake8] 2 | max-line-length = 88 3 | extend-ignore = E203 -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karipov/creationDate/HEAD/.gitignore -------------------------------------------------------------------------------- /.rsyncignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karipov/creationDate/HEAD/.rsyncignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karipov/creationDate/HEAD/LICENSE -------------------------------------------------------------------------------- /Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karipov/creationDate/HEAD/Pipfile -------------------------------------------------------------------------------- /Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karipov/creationDate/HEAD/Pipfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karipov/creationDate/HEAD/README.md -------------------------------------------------------------------------------- /logs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karipov/creationDate/HEAD/logs/README.md -------------------------------------------------------------------------------- /scripts/bot_down.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karipov/creationDate/HEAD/scripts/bot_down.py -------------------------------------------------------------------------------- /scripts/systemd/creationDate-watcher.path.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karipov/creationDate/HEAD/scripts/systemd/creationDate-watcher.path.example -------------------------------------------------------------------------------- /scripts/systemd/creationDate-watcher.service.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karipov/creationDate/HEAD/scripts/systemd/creationDate-watcher.service.example -------------------------------------------------------------------------------- /scripts/systemd/creationDate.service.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karipov/creationDate/HEAD/scripts/systemd/creationDate.service.example -------------------------------------------------------------------------------- /scripts/telethon_interactive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karipov/creationDate/HEAD/scripts/telethon_interactive.py -------------------------------------------------------------------------------- /scripts/telethon_setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karipov/creationDate/HEAD/scripts/telethon_setup.py -------------------------------------------------------------------------------- /src/config.json.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karipov/creationDate/HEAD/src/config.json.example -------------------------------------------------------------------------------- /src/data/dates.json.example: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/handlers/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karipov/creationDate/HEAD/src/handlers/admin.py -------------------------------------------------------------------------------- /src/handlers/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karipov/creationDate/HEAD/src/handlers/app.py -------------------------------------------------------------------------------- /src/handlers/callback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karipov/creationDate/HEAD/src/handlers/callback.py -------------------------------------------------------------------------------- /src/handlers/excepts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karipov/creationDate/HEAD/src/handlers/excepts.py -------------------------------------------------------------------------------- /src/handlers/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karipov/creationDate/HEAD/src/handlers/service.py -------------------------------------------------------------------------------- /src/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karipov/creationDate/HEAD/src/main.py -------------------------------------------------------------------------------- /src/middles/userbot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karipov/creationDate/HEAD/src/middles/userbot.py -------------------------------------------------------------------------------- /src/process/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karipov/creationDate/HEAD/src/process/database.py -------------------------------------------------------------------------------- /src/process/function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karipov/creationDate/HEAD/src/process/function.py -------------------------------------------------------------------------------- /src/process/utility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karipov/creationDate/HEAD/src/process/utility.py -------------------------------------------------------------------------------- /src/ui/replies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karipov/creationDate/HEAD/src/ui/replies.json --------------------------------------------------------------------------------