Java教程

FastAPI hello-word

本文主要是介绍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的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!