├── .gitignore ├── LICENSE ├── MANIFEST.in ├── README.md ├── bin └── transcriptbot ├── setup.py └── transcriptbot ├── __init__.py ├── db.py ├── recorder.py ├── slack.py └── transcriber.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agermanidis/TranscriptBot/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agermanidis/TranscriptBot/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agermanidis/TranscriptBot/HEAD/README.md -------------------------------------------------------------------------------- /bin/transcriptbot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agermanidis/TranscriptBot/HEAD/bin/transcriptbot -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agermanidis/TranscriptBot/HEAD/setup.py -------------------------------------------------------------------------------- /transcriptbot/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /transcriptbot/db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agermanidis/TranscriptBot/HEAD/transcriptbot/db.py -------------------------------------------------------------------------------- /transcriptbot/recorder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agermanidis/TranscriptBot/HEAD/transcriptbot/recorder.py -------------------------------------------------------------------------------- /transcriptbot/slack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agermanidis/TranscriptBot/HEAD/transcriptbot/slack.py -------------------------------------------------------------------------------- /transcriptbot/transcriber.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agermanidis/TranscriptBot/HEAD/transcriptbot/transcriber.py --------------------------------------------------------------------------------