from fastapi import FastAPI
app = FastAPI()
@app.get("/root")
def read_root():
return {"Hello": "World"}
from fastapi import FastAPI
app = FastAPI()
@app.get("/root")
def read_root():
return {"Hello": "World", "Read": "Root", "My": "Name"}
'Programming Language > Python' 카테고리의 다른 글
[Python] FastAPI description, summary 추가하기 (0) | 2023.03.10 |
---|---|
[Python] FastAPI 데이터 타입 강제하는 방법 (0) | 2023.03.10 |
[Python] Surprise 라이브러리로 최근접이웃 사용 방법 (0) | 2023.02.27 |
[Python] Surprise 라이브러리로 예측평점과 실제평점 비교해보기 (0) | 2023.02.27 |
[Python] Surprise 라이브러리로 사용자의 아이템 예측해보기 (0) | 2023.02.27 |