일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 플랫폼
- Algorithm
- Python
- guru
- IMAGE
- 전문가를 위한 파이썬
- dockerfile
- 파이썬
- 동시성
- 이더리움
- RabbitMQ
- Fast API
- Ethereum
- AWS
- Kubernetes
- Network
- 코어 이더리움 프로그래밍
- docker
- 러스트
- function
- BAEKJOON
- rust
- 블록체인
- 백준
- Refactoring
- fluent python
- BlockChain
- Thread
- Container
- 알고리즘
Archives
- Today
- Total
글쓰기 | 방명록 | 관리 |
목록Model (1)
Victoree's Blog
[4] Pydantic Model
1.Model Dict 1) wrapping/unwrapping @app.post("/user/", response_model=UserOut) async def create_user(user_in: UserIn): user_saved = fake_save_user(user_in) return user_saved user_in 객체는 Pydantic models 임 Pydantic models은 .dict()라는 함수가 있으며, model data를 dict로 리턴함 user_dict = user_in.dict() { 'username': 'john', 'password': 'secret', 'email': 'john.doe@example.com', 'full_name': None, } dict를 unwr..
Python/Fast API
2021. 7. 22. 13:58