├── .gitignore ├── LICENSE ├── Procfile ├── README.md ├── app.json ├── bot.py ├── creds.py ├── logo.jpg ├── process.py ├── requirements.txt ├── runtime.txt └── strings.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentnova/SubtitleTranslator-Bot/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentnova/SubtitleTranslator-Bot/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | worker: python3 bot.py 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentnova/SubtitleTranslator-Bot/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentnova/SubtitleTranslator-Bot/HEAD/app.json -------------------------------------------------------------------------------- /bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentnova/SubtitleTranslator-Bot/HEAD/bot.py -------------------------------------------------------------------------------- /creds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentnova/SubtitleTranslator-Bot/HEAD/creds.py -------------------------------------------------------------------------------- /logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentnova/SubtitleTranslator-Bot/HEAD/logo.jpg -------------------------------------------------------------------------------- /process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentnova/SubtitleTranslator-Bot/HEAD/process.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentnova/SubtitleTranslator-Bot/HEAD/requirements.txt -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.9.0 2 | -------------------------------------------------------------------------------- /strings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentnova/SubtitleTranslator-Bot/HEAD/strings.py --------------------------------------------------------------------------------