├── LICENSE ├── Procfile ├── README.md ├── app.json ├── bot.py ├── display_progress.py ├── requirements.txt └── temp └── .keep /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samadii/Transcribe-Bot/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | worker: python3 bot.py 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samadii/Transcribe-Bot/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samadii/Transcribe-Bot/HEAD/app.json -------------------------------------------------------------------------------- /bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samadii/Transcribe-Bot/HEAD/bot.py -------------------------------------------------------------------------------- /display_progress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samadii/Transcribe-Bot/HEAD/display_progress.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samadii/Transcribe-Bot/HEAD/requirements.txt -------------------------------------------------------------------------------- /temp/.keep: -------------------------------------------------------------------------------- 1 | 2 | --------------------------------------------------------------------------------