├── .gitattributes ├── .github └── workflows │ └── update-deepgram-sdk.yaml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── SECURITY.md ├── app.py ├── app_socketio.py ├── deepgram.toml ├── requirements-dev.txt ├── requirements.txt ├── sample.env ├── static ├── click.png ├── script.js └── style.css ├── templates ├── .gitkeep └── index.html └── tests └── test_deepgram_sdk.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepgram-starters/flask-live-transcription/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/update-deepgram-sdk.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepgram-starters/flask-live-transcription/HEAD/.github/workflows/update-deepgram-sdk.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__/ 2 | .python-version 3 | .env 4 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepgram-starters/flask-live-transcription/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepgram-starters/flask-live-transcription/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepgram-starters/flask-live-transcription/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepgram-starters/flask-live-transcription/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepgram-starters/flask-live-transcription/HEAD/SECURITY.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepgram-starters/flask-live-transcription/HEAD/app.py -------------------------------------------------------------------------------- /app_socketio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepgram-starters/flask-live-transcription/HEAD/app_socketio.py -------------------------------------------------------------------------------- /deepgram.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepgram-starters/flask-live-transcription/HEAD/deepgram.toml -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- 1 | # pip install -r requirements.txt 2 | 3 | # Testing 4 | pytest 5 | httpx -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepgram-starters/flask-live-transcription/HEAD/requirements.txt -------------------------------------------------------------------------------- /sample.env: -------------------------------------------------------------------------------- 1 | DEEPGRAM_API_KEY=%api_key% -------------------------------------------------------------------------------- /static/click.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepgram-starters/flask-live-transcription/HEAD/static/click.png -------------------------------------------------------------------------------- /static/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepgram-starters/flask-live-transcription/HEAD/static/script.js -------------------------------------------------------------------------------- /static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepgram-starters/flask-live-transcription/HEAD/static/style.css -------------------------------------------------------------------------------- /templates/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepgram-starters/flask-live-transcription/HEAD/templates/index.html -------------------------------------------------------------------------------- /tests/test_deepgram_sdk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepgram-starters/flask-live-transcription/HEAD/tests/test_deepgram_sdk.py --------------------------------------------------------------------------------