반응형 path2 Fast API 배우기 17부 - Path Operation Configuration 이번에는 path operation의 세팅에 관련된 파라미터들을 배워보겠습니다. status_code status_code를 이용하여 response의 status code를 지정해 줄 수 있습니다. from typing import Optional, Set from fastapi import FastAPI, status from pydantic import BaseModel app = FastAPI() class Item(BaseModel): name: str description: Optional[str] = None price: float tax: Optional[float] = None tags: Set[str] = [] @app.post("/items/", response_model=Item, .. 2021. 11. 3. Fast API 배우기 5부 - Path 클래스 앞서 Query 클래스로 Query Parameter를 다루는법을 배웠다 똑같에 Path 클래스로 Path Parameter를 좀더 심도있게 다룰 수 있다 Metadata 선언하기 Query와 똑같이 title 에 메타데이터를 넣어주면 된다 item_id: int = Path(..., title="The ID of the item to get"), from typing import Optional from fastapi import FastAPI, Path, Query app = FastAPI() @app.get("/items/{item_id}") async def read_items( item_id: int = Path(..., title="The ID of the item to get"), q: Op.. 2021. 10. 21. 이전 1 다음 반응형