Uvicorn is a lightning-fast ASGI server used to serve Python ASGI frameworks like FastAPI, Django Channels, Quart, BlackSheep, etc…
To install Uvicorn, run
pip install uvicorn
To run, you can use
uvicorn main:app --host 0.0.0.0 --port 8000 --reload
See Python
Leave a Reply