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 |
Tags
- 소프티어
- group by
- DP
- bfs
- LEVEL 2
- 자바스크립트
- 오블완
- Lv. 2
- Baekjoon
- javascript
- 파이썬
- programmers
- Java
- level 3
- 프로그래머스
- 깊이 우선 탐색
- Lv. 3
- Lv. 1
- softeer
- Lv. 0
- Python
- 너비 우선 탐색
- SQL 고득점 KIT
- Dynamic Programming
- dfs
- 동적계획법
- 백준
- SQL
- join
- 티스토리챌린지
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