from fastapi import FastAPI
app = FastAPI()
@app.get(
path="/items",
summary="아이템 Summary 입니다.",
description="아이템 Description 입니다.",
tags=['First']
)
async def read_item(item_id: int, item_name: str):
return {"item_id": item_id, "item_name": item_name}
from fastapi import FastAPI
app = FastAPI()
@app.get(
path="/items",
summary="아이템 Summary 입니다.",
description="아이템 Description 입니다.",
tags=['First', 'Second']
)
async def read_item(item_id: int, item_name: str):
return {"item_id": item_id, "item_name": item_name}
from fastapi import FastAPI
app = FastAPI()
@app.get(
path="/items",
summary="아이템 Summary 입니다.",
description="아이템 Description 입니다.",
tags=['First', 'Second', 'Third']
)
async def read_item(item_id: int, item_name: str):
return {"item_id": item_id, "item_name": item_name}
'Programming Language > Python' 카테고리의 다른 글
[Python] 리스트의 중복값을 제거하는 방법 (0) | 2023.03.21 |
---|---|
[Python] FastAPI 리스트로 입력받는 방법 (0) | 2023.03.10 |
[Python] FastAPI description, summary 추가하기 (0) | 2023.03.10 |
[Python] FastAPI 데이터 타입 강제하는 방법 (0) | 2023.03.10 |
[Python] FastAPI Return 테스트 해보기 (0) | 2023.03.10 |