This is the code to accompany an article, it has simple examples for serving a simple website via HTTP/2. It includes some bootstrap code.
Assuming you have at least Python 3.6, firstly to setup:
$ python -m venv venv $ source venv/bin/activate $ pip install -r requirements.txt $ openssl req -x509 -newkey rsa:4096 -keyout key.pem -out cert.pem -days 365 -nodes
then to run,
$ python quart_websocket # REMEMBER TO CONFIG MONGO TO 0.0.0.0