├── .env.sample ├── .github └── workflows │ ├── pyLint.yml │ └── release.yml ├── .gitignore ├── Dockerfile ├── License ├── README.md ├── bot ├── __init__.py ├── __main__.py ├── config.py ├── fun │ ├── __init__.py │ ├── emojis.py │ ├── quips.py │ ├── quotes.py │ └── stuff.py ├── others │ ├── __init__.py │ ├── exceptions.py │ └── shibboleth.py ├── startup │ ├── __init__.py │ ├── after.py │ └── before.py ├── utils │ ├── FastTelethon.py │ ├── __init__.py │ ├── ani_utils.py │ ├── batch_utils.py │ ├── bot_utils.py │ ├── db_utils.py │ ├── local_db_utils.py │ ├── log_utils.py │ ├── msg_utils.py │ ├── os_utils.py │ ├── queue_utils.py │ └── rss_utils.py └── workers │ ├── __init__.py │ ├── auto │ ├── __init__.py │ ├── schedule.py │ ├── status.py │ └── transcode.py │ ├── downloaders │ ├── __init__.py │ ├── dl_helpers.py │ └── download.py │ ├── encoders │ ├── __init__.py │ └── encode.py │ ├── handlers │ ├── __init__.py │ ├── dev.py │ ├── e_callbacks.py │ ├── manage.py │ ├── queue.py │ ├── rebut.py │ └── stuff.py │ └── uploaders │ ├── __init__.py │ ├── dump.py │ └── upload.py ├── filters ├── Auto-rename.txt ├── Namefilter.txt ├── Release_caption.txt └── Releasefilter.txt ├── fonts ├── Imprima_Love.ttf └── evolve.otf ├── qbit ├── qBittorrent │ └── config │ │ └── qBittorrent.conf └── qBittorrent_1 │ └── config │ └── qBittorrent.conf ├── requirements.txt ├── run.sh ├── scripts ├── handbrakecli.sh ├── local_deploy.sh └── update_docker.py ├── srun.sh ├── update.py └── version.txt /.env.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nubuki-all/Enc/HEAD/.env.sample -------------------------------------------------------------------------------- /.github/workflows/pyLint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nubuki-all/Enc/HEAD/.github/workflows/pyLint.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nubuki-all/Enc/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nubuki-all/Enc/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nubuki-all/Enc/HEAD/Dockerfile -------------------------------------------------------------------------------- /License: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nubuki-all/Enc/HEAD/License -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nubuki-all/Enc/HEAD/README.md -------------------------------------------------------------------------------- /bot/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nubuki-all/Enc/HEAD/bot/__init__.py -------------------------------------------------------------------------------- /bot/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nubuki-all/Enc/HEAD/bot/__main__.py -------------------------------------------------------------------------------- /bot/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nubuki-all/Enc/HEAD/bot/config.py -------------------------------------------------------------------------------- /bot/fun/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bot/fun/emojis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nubuki-all/Enc/HEAD/bot/fun/emojis.py -------------------------------------------------------------------------------- /bot/fun/quips.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nubuki-all/Enc/HEAD/bot/fun/quips.py -------------------------------------------------------------------------------- /bot/fun/quotes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nubuki-all/Enc/HEAD/bot/fun/quotes.py -------------------------------------------------------------------------------- /bot/fun/stuff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nubuki-all/Enc/HEAD/bot/fun/stuff.py -------------------------------------------------------------------------------- /bot/others/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bot/others/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nubuki-all/Enc/HEAD/bot/others/exceptions.py -------------------------------------------------------------------------------- /bot/others/shibboleth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nubuki-all/Enc/HEAD/bot/others/shibboleth.py -------------------------------------------------------------------------------- /bot/startup/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bot/startup/after.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nubuki-all/Enc/HEAD/bot/startup/after.py -------------------------------------------------------------------------------- /bot/startup/before.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nubuki-all/Enc/HEAD/bot/startup/before.py -------------------------------------------------------------------------------- /bot/utils/FastTelethon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nubuki-all/Enc/HEAD/bot/utils/FastTelethon.py -------------------------------------------------------------------------------- /bot/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bot/utils/ani_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nubuki-all/Enc/HEAD/bot/utils/ani_utils.py -------------------------------------------------------------------------------- /bot/utils/batch_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nubuki-all/Enc/HEAD/bot/utils/batch_utils.py -------------------------------------------------------------------------------- /bot/utils/bot_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nubuki-all/Enc/HEAD/bot/utils/bot_utils.py -------------------------------------------------------------------------------- /bot/utils/db_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nubuki-all/Enc/HEAD/bot/utils/db_utils.py -------------------------------------------------------------------------------- /bot/utils/local_db_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nubuki-all/Enc/HEAD/bot/utils/local_db_utils.py -------------------------------------------------------------------------------- /bot/utils/log_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nubuki-all/Enc/HEAD/bot/utils/log_utils.py -------------------------------------------------------------------------------- /bot/utils/msg_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nubuki-all/Enc/HEAD/bot/utils/msg_utils.py -------------------------------------------------------------------------------- /bot/utils/os_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nubuki-all/Enc/HEAD/bot/utils/os_utils.py -------------------------------------------------------------------------------- /bot/utils/queue_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nubuki-all/Enc/HEAD/bot/utils/queue_utils.py -------------------------------------------------------------------------------- /bot/utils/rss_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nubuki-all/Enc/HEAD/bot/utils/rss_utils.py -------------------------------------------------------------------------------- /bot/workers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bot/workers/auto/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bot/workers/auto/schedule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nubuki-all/Enc/HEAD/bot/workers/auto/schedule.py -------------------------------------------------------------------------------- /bot/workers/auto/status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nubuki-all/Enc/HEAD/bot/workers/auto/status.py -------------------------------------------------------------------------------- /bot/workers/auto/transcode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nubuki-all/Enc/HEAD/bot/workers/auto/transcode.py -------------------------------------------------------------------------------- /bot/workers/downloaders/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bot/workers/downloaders/dl_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nubuki-all/Enc/HEAD/bot/workers/downloaders/dl_helpers.py -------------------------------------------------------------------------------- /bot/workers/downloaders/download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nubuki-all/Enc/HEAD/bot/workers/downloaders/download.py -------------------------------------------------------------------------------- /bot/workers/encoders/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bot/workers/encoders/encode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nubuki-all/Enc/HEAD/bot/workers/encoders/encode.py -------------------------------------------------------------------------------- /bot/workers/handlers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bot/workers/handlers/dev.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nubuki-all/Enc/HEAD/bot/workers/handlers/dev.py -------------------------------------------------------------------------------- /bot/workers/handlers/e_callbacks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nubuki-all/Enc/HEAD/bot/workers/handlers/e_callbacks.py -------------------------------------------------------------------------------- /bot/workers/handlers/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nubuki-all/Enc/HEAD/bot/workers/handlers/manage.py -------------------------------------------------------------------------------- /bot/workers/handlers/queue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nubuki-all/Enc/HEAD/bot/workers/handlers/queue.py -------------------------------------------------------------------------------- /bot/workers/handlers/rebut.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nubuki-all/Enc/HEAD/bot/workers/handlers/rebut.py -------------------------------------------------------------------------------- /bot/workers/handlers/stuff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nubuki-all/Enc/HEAD/bot/workers/handlers/stuff.py -------------------------------------------------------------------------------- /bot/workers/uploaders/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bot/workers/uploaders/dump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nubuki-all/Enc/HEAD/bot/workers/uploaders/dump.py -------------------------------------------------------------------------------- /bot/workers/uploaders/upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nubuki-all/Enc/HEAD/bot/workers/uploaders/upload.py -------------------------------------------------------------------------------- /filters/Auto-rename.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nubuki-all/Enc/HEAD/filters/Auto-rename.txt -------------------------------------------------------------------------------- /filters/Namefilter.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nubuki-all/Enc/HEAD/filters/Namefilter.txt -------------------------------------------------------------------------------- /filters/Release_caption.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nubuki-all/Enc/HEAD/filters/Release_caption.txt -------------------------------------------------------------------------------- /filters/Releasefilter.txt: -------------------------------------------------------------------------------- 1 | Yameii|Eng|(Dub) 2 | LostYears|Dual|(Dual Audio) 3 | -------------------------------------------------------------------------------- /fonts/Imprima_Love.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nubuki-all/Enc/HEAD/fonts/Imprima_Love.ttf -------------------------------------------------------------------------------- /fonts/evolve.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nubuki-all/Enc/HEAD/fonts/evolve.otf -------------------------------------------------------------------------------- /qbit/qBittorrent/config/qBittorrent.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nubuki-all/Enc/HEAD/qbit/qBittorrent/config/qBittorrent.conf -------------------------------------------------------------------------------- /qbit/qBittorrent_1/config/qBittorrent.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nubuki-all/Enc/HEAD/qbit/qBittorrent_1/config/qBittorrent.conf -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nubuki-all/Enc/HEAD/requirements.txt -------------------------------------------------------------------------------- /run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nubuki-all/Enc/HEAD/run.sh -------------------------------------------------------------------------------- /scripts/handbrakecli.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nubuki-all/Enc/HEAD/scripts/handbrakecli.sh -------------------------------------------------------------------------------- /scripts/local_deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nubuki-all/Enc/HEAD/scripts/local_deploy.sh -------------------------------------------------------------------------------- /scripts/update_docker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nubuki-all/Enc/HEAD/scripts/update_docker.py -------------------------------------------------------------------------------- /srun.sh: -------------------------------------------------------------------------------- 1 | nohup bash run.sh >/dev/null 2>&1 & -------------------------------------------------------------------------------- /update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nubuki-all/Enc/HEAD/update.py -------------------------------------------------------------------------------- /version.txt: -------------------------------------------------------------------------------- 1 | v2.4.3-beta --------------------------------------------------------------------------------