Python 的 ASGI HTTP 服务器,适用于异步项目。 更多信息:https://www.uvicorn.org/.
uvicorn {{导入路径:应用对象}}
uvicorn --host {{localhost}} --port {{8080}} {{导入路径:应用对象}}
uvicorn --reload {{导入路径:应用对象}}
uvicorn --workers {{4}} {{导入路径:应用对象}}
uvicorn --ssl-certfile {{cert.pem}} --ssl-keyfile {{key.pem}} {{导入路径:应用对象}}