2023-02-06から1日間の記事一覧

uvicornとFastAPIによるサーバー構築 その2

server.py import uvicornfrom fastapi import FastAPIfrom pydantic import BaseModelapp = FastAPI()class Request(BaseModel): message: str@app.post("/hoge_post")async def hoge_func(req: Request): print(req.message) return {'output': req.messag…

uvicornとFastAPIによるサーバー構築 その1

server.py import uvicornfrom fastapi import FastAPIapp = FastAPI()@app.post("/hoge_post")async def hoge_func(): print('hoge')def start(): config = uvicorn.Config("server:app", host="127.0.0.1", port=8000, log_level="info") server = uvicorn…