uvicorn

ASGI web server for running Python async web applications

brewmacoslinux
Try with needOr install directly
Source

About

ASGI web server

Commands

uvicorn

Examples

Run a FastAPI application on default host and port$ uvicorn main:app
Run with custom host and port with auto-reload for development$ uvicorn main:app --host 0.0.0.0 --port 8000 --reload
Run with multiple workers for production$ uvicorn main:app --workers 4 --host 0.0.0.0