├── .gitattributes ├── .gitignore ├── AutoAnimeBot ├── __init__.py ├── __main__.py ├── core │ ├── bot.py │ └── log.py ├── inline.py └── modules │ ├── anilist.py │ ├── db.py │ ├── downloader.py │ ├── parser.py │ ├── progress.py │ ├── schedule.py │ ├── tg_handler.py │ ├── thumbnail.py │ ├── uploader.py │ ├── utils.py │ └── vote.py ├── CODE_OF_CONDUCT.md ├── Dockerfile ├── Procfile ├── README.md ├── app.json ├── assets ├── Oswald-Regular.ttf ├── Raleway-Bold.ttf ├── Roboto-Bold.ttf ├── c4UUTC4DAe.jpg └── thumb.jpg ├── config.py ├── gen config.py ├── requirements.txt └── sample.env /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechShreyash/AutoAnimeBot/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechShreyash/AutoAnimeBot/HEAD/.gitignore -------------------------------------------------------------------------------- /AutoAnimeBot/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechShreyash/AutoAnimeBot/HEAD/AutoAnimeBot/__init__.py -------------------------------------------------------------------------------- /AutoAnimeBot/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechShreyash/AutoAnimeBot/HEAD/AutoAnimeBot/__main__.py -------------------------------------------------------------------------------- /AutoAnimeBot/core/bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechShreyash/AutoAnimeBot/HEAD/AutoAnimeBot/core/bot.py -------------------------------------------------------------------------------- /AutoAnimeBot/core/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechShreyash/AutoAnimeBot/HEAD/AutoAnimeBot/core/log.py -------------------------------------------------------------------------------- /AutoAnimeBot/inline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechShreyash/AutoAnimeBot/HEAD/AutoAnimeBot/inline.py -------------------------------------------------------------------------------- /AutoAnimeBot/modules/anilist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechShreyash/AutoAnimeBot/HEAD/AutoAnimeBot/modules/anilist.py -------------------------------------------------------------------------------- /AutoAnimeBot/modules/db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechShreyash/AutoAnimeBot/HEAD/AutoAnimeBot/modules/db.py -------------------------------------------------------------------------------- /AutoAnimeBot/modules/downloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechShreyash/AutoAnimeBot/HEAD/AutoAnimeBot/modules/downloader.py -------------------------------------------------------------------------------- /AutoAnimeBot/modules/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechShreyash/AutoAnimeBot/HEAD/AutoAnimeBot/modules/parser.py -------------------------------------------------------------------------------- /AutoAnimeBot/modules/progress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechShreyash/AutoAnimeBot/HEAD/AutoAnimeBot/modules/progress.py -------------------------------------------------------------------------------- /AutoAnimeBot/modules/schedule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechShreyash/AutoAnimeBot/HEAD/AutoAnimeBot/modules/schedule.py -------------------------------------------------------------------------------- /AutoAnimeBot/modules/tg_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechShreyash/AutoAnimeBot/HEAD/AutoAnimeBot/modules/tg_handler.py -------------------------------------------------------------------------------- /AutoAnimeBot/modules/thumbnail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechShreyash/AutoAnimeBot/HEAD/AutoAnimeBot/modules/thumbnail.py -------------------------------------------------------------------------------- /AutoAnimeBot/modules/uploader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechShreyash/AutoAnimeBot/HEAD/AutoAnimeBot/modules/uploader.py -------------------------------------------------------------------------------- /AutoAnimeBot/modules/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechShreyash/AutoAnimeBot/HEAD/AutoAnimeBot/modules/utils.py -------------------------------------------------------------------------------- /AutoAnimeBot/modules/vote.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechShreyash/AutoAnimeBot/HEAD/AutoAnimeBot/modules/vote.py -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechShreyash/AutoAnimeBot/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechShreyash/AutoAnimeBot/HEAD/Dockerfile -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | worker: python3 -m AutoAnimeBot -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechShreyash/AutoAnimeBot/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechShreyash/AutoAnimeBot/HEAD/app.json -------------------------------------------------------------------------------- /assets/Oswald-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechShreyash/AutoAnimeBot/HEAD/assets/Oswald-Regular.ttf -------------------------------------------------------------------------------- /assets/Raleway-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechShreyash/AutoAnimeBot/HEAD/assets/Raleway-Bold.ttf -------------------------------------------------------------------------------- /assets/Roboto-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechShreyash/AutoAnimeBot/HEAD/assets/Roboto-Bold.ttf -------------------------------------------------------------------------------- /assets/c4UUTC4DAe.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechShreyash/AutoAnimeBot/HEAD/assets/c4UUTC4DAe.jpg -------------------------------------------------------------------------------- /assets/thumb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechShreyash/AutoAnimeBot/HEAD/assets/thumb.jpg -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechShreyash/AutoAnimeBot/HEAD/config.py -------------------------------------------------------------------------------- /gen config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechShreyash/AutoAnimeBot/HEAD/gen config.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechShreyash/AutoAnimeBot/HEAD/requirements.txt -------------------------------------------------------------------------------- /sample.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechShreyash/AutoAnimeBot/HEAD/sample.env --------------------------------------------------------------------------------