FastAPI hello-word

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}


if __name__ == __main__:
    import uvicorn

    uvicorn.run(app, host="localhost", port=8080)

FastAPI hello-word

 

FastAPI hello-word

上一篇:第一个独立开发的游戏 怪斯特:零 已经上线APP STORE!


下一篇:vue(36)vue中CompositionAPI中生命周期函数的使用