Servidores Python
WSGI
WSGI es el Python Web Server Gateway
No es compatible con protocolos web agregados como WebSockets.
https://peps.python.org/pep-3333/
ASGI
ASGI (Asynchronous Server Gateway Interface) es una version superadora de WSGI.
https://asgi.readthedocs.io/en/latest/
Uvicorn
Uvicorn es un servidor ASGI implementado en Python.
Soporta HTTP, HTTP/1.1, HTTP/2 y WebSockets
https://www.uvicorn.org
https://jblazquez.es/dockerizando-tu-aplicacion-flask-con-gunicorn-un-paso-clave-para-el-despliegue-exitoso/
Gunicorn
Gunicorn es un servidor WSGI implementado en Python
https://docs.gunicorn.org/en/stable/