uvicorn

Python ASGI HTTP Server, for asynchronous projects. More information: https://www.uvicorn.org/.

uvicorn import.path:app_object

uvicorn --host localhost --port 8080 import.path:app_object

uvicorn --reload import.path:app_object

uvicorn --workers 4 import.path:app_object

uvicorn --ssl-certfile cert.pem --ssl-keyfile key.pem import.path:app_object