├── .gitignore ├── LICENSE ├── README.md ├── requirements.txt └── src ├── cert.pem ├── key.pem ├── main.py ├── static ├── favicon.ico └── js │ ├── Resampler.js │ ├── main.js │ └── utils.js └── templates └── index.html /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | *.pyc 3 | venv 4 | upload_waves -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honghe/demo_fastapi_websocket/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honghe/demo_fastapi_websocket/HEAD/README.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | fastapi 2 | aiofiles 3 | jinja2 4 | uvicorn -------------------------------------------------------------------------------- /src/cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honghe/demo_fastapi_websocket/HEAD/src/cert.pem -------------------------------------------------------------------------------- /src/key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honghe/demo_fastapi_websocket/HEAD/src/key.pem -------------------------------------------------------------------------------- /src/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honghe/demo_fastapi_websocket/HEAD/src/main.py -------------------------------------------------------------------------------- /src/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honghe/demo_fastapi_websocket/HEAD/src/static/favicon.ico -------------------------------------------------------------------------------- /src/static/js/Resampler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honghe/demo_fastapi_websocket/HEAD/src/static/js/Resampler.js -------------------------------------------------------------------------------- /src/static/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honghe/demo_fastapi_websocket/HEAD/src/static/js/main.js -------------------------------------------------------------------------------- /src/static/js/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honghe/demo_fastapi_websocket/HEAD/src/static/js/utils.js -------------------------------------------------------------------------------- /src/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honghe/demo_fastapi_websocket/HEAD/src/templates/index.html --------------------------------------------------------------------------------