建立于: 4年前 ( 更新: 4年前 )
一、安装
主机端,我会放入背景运行,在bash环境使用如下命令:
pip install fastapi uvicorn
二、范例进程(当然如果可以的话创建vertualenv来跑罗。
from typing import Optional
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def read_root():
return {"Hello": "World"}
@app.get("/items/{item_id}")
def read_item(item_id: int, q: Optional[str] = None):
return {"item_id": item_id, "q": q}
nohup uvicorn main:app --reload --host 0.0.0.0 &
如果要停止我用如下命令
killall uvicorn
查看运行状态,用
tail -f nohup.out
No Comment
Post your comment