Notice
Recent Posts
Recent Comments
Link
250x250
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- 소프티어
- 파이썬
- dfs
- 자바스크립트
- programmers
- LEVEL 2
- Lv. 3
- group by
- 티스토리챌린지
- bfs
- DP
- Lv. 0
- javascript
- 너비 우선 탐색
- 동적계획법
- 백준
- 프로그래머스
- Java
- Lv. 1
- Lv. 2
- 오블완
- softeer
- SQL
- Baekjoon
- 깊이 우선 탐색
- level 3
- Python
- SQL 고득점 KIT
- join
- Dynamic Programming
Archives
- Today
- Total
목록Controller Layer (1)
몸과 마음이 건전한 SW 개발자
FastAPI 백엔드 개발 가이드: API 구현 순서와 모던 개발 방법론 [2탄]
4. API 개발 순서Step 1: Pydantic Schemas 정의# app/domain/users/schemas/user_schemas.py from pydantic import BaseModel, EmailStr, Field from datetime import datetime from typing import Optional class UserBase(BaseModel): email: EmailStr username: str = Field(..., min_length=3, max_length=50) class UserCreate(UserBase): password: str = Field(..., min_length=8) class UserUpdate(Base..
백엔드
2025. 8. 12. 17:07