티스토리 뷰
728x90
@app.get("/items/")
async def read_items():
return [{"name": "Foo"}]
@app.exception_handler(RequestValidationError)
async def validation_exception_handler(request, exc):
"""Your custom validation exception."""
message =
return JSONResponse(
status_code=400,
content={"message": f"Validation error: {exc}"}
)
def custom_openapi():
if app.openapi_schema:
return app.openapi_schema
openapi_schema = get_openapi()
# look for the error 422 and removes it
for method in openapi_schema["paths"]:
try:
del openapi_schema["paths"][method]["post"]["responses"]["422"]
except KeyError:
pass
app.openapi_schema = openapi_schema
return app.openapi_schema
app.openapi = custom_openapi
728x90
'공부' 카테고리의 다른 글
[FastApi] Bearer (0) | 2023.09.16 |
---|---|
Basic 인증과 Bearer 인증의 모든 것 (0) | 2023.09.16 |
[python] datetime.datetime.fromisoformat('2019-01-04T16:41:24+02:00') (0) | 2023.09.16 |
[FastApi] swagger responses={404: {"model": Error}} (0) | 2023.09.16 |
[sh] history -c & history -d 1 (0) | 2023.09.16 |
댓글
250x250
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
TAG
- 할인
- 테슬라 레퍼럴
- 모델y
- 책그림
- 테슬라 리퍼럴 코드 혜택
- 인스타그램
- 테슬라 레퍼럴 코드 확인
- 테슬라 리퍼럴 코드 생성
- 팔로워 수 세기
- COUNT
- 테슬라 크레딧 사용
- follower
- 모델 Y 레퍼럴
- 김달
- 레퍼럴
- wlw
- 테슬라
- 테슬라 레퍼럴 적용 확인
- Kluge
- Bot
- 어떻게 능력을 보여줄 것인가?
- 연애학개론
- 테슬라 추천
- 개리마커스
- 클루지
- 메디파크 내과 전문의 의학박사 김영수
- 유투브
- 테슬라 리퍼럴 코드
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
글 보관함