├── Dockerfile ├── LICENSE ├── Procfile ├── README.md ├── app.json ├── bot.py ├── config.py ├── helper ├── database.py └── utils.py ├── logging.conf ├── plugins ├── admin_panel.py ├── antinsfw.py ├── auto_rename.py ├── file_rename.py ├── force_subs.py ├── metadata.py ├── start_&_cb.py └── thumb_&_cap.py ├── render.yaml ├── requirements.txt ├── route.py └── runtime.txt /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeflix-Bots/Auto-Rename-Bot/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeflix-Bots/Auto-Rename-Bot/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | worker: python bot.py 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeflix-Bots/Auto-Rename-Bot/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeflix-Bots/Auto-Rename-Bot/HEAD/app.json -------------------------------------------------------------------------------- /bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeflix-Bots/Auto-Rename-Bot/HEAD/bot.py -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeflix-Bots/Auto-Rename-Bot/HEAD/config.py -------------------------------------------------------------------------------- /helper/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeflix-Bots/Auto-Rename-Bot/HEAD/helper/database.py -------------------------------------------------------------------------------- /helper/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeflix-Bots/Auto-Rename-Bot/HEAD/helper/utils.py -------------------------------------------------------------------------------- /logging.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeflix-Bots/Auto-Rename-Bot/HEAD/logging.conf -------------------------------------------------------------------------------- /plugins/admin_panel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeflix-Bots/Auto-Rename-Bot/HEAD/plugins/admin_panel.py -------------------------------------------------------------------------------- /plugins/antinsfw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeflix-Bots/Auto-Rename-Bot/HEAD/plugins/antinsfw.py -------------------------------------------------------------------------------- /plugins/auto_rename.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeflix-Bots/Auto-Rename-Bot/HEAD/plugins/auto_rename.py -------------------------------------------------------------------------------- /plugins/file_rename.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeflix-Bots/Auto-Rename-Bot/HEAD/plugins/file_rename.py -------------------------------------------------------------------------------- /plugins/force_subs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeflix-Bots/Auto-Rename-Bot/HEAD/plugins/force_subs.py -------------------------------------------------------------------------------- /plugins/metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeflix-Bots/Auto-Rename-Bot/HEAD/plugins/metadata.py -------------------------------------------------------------------------------- /plugins/start_&_cb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeflix-Bots/Auto-Rename-Bot/HEAD/plugins/start_&_cb.py -------------------------------------------------------------------------------- /plugins/thumb_&_cap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeflix-Bots/Auto-Rename-Bot/HEAD/plugins/thumb_&_cap.py -------------------------------------------------------------------------------- /render.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeflix-Bots/Auto-Rename-Bot/HEAD/render.yaml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeflix-Bots/Auto-Rename-Bot/HEAD/requirements.txt -------------------------------------------------------------------------------- /route.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeflix-Bots/Auto-Rename-Bot/HEAD/route.py -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.10.8 2 | --------------------------------------------------------------------------------