전체 글 91

[FastAPI] FastAPI [11] Cookie Parameters

https://fastapi.tiangolo.com/tutorial/cookie-params/ Cookie Parameters - FastAPI Cookie Parameters You can define Cookie parameters the same way you define Query and Path parameters. Import Cookie First import Cookie: Python 3.10+Python 3.9+Python 3.6+Python 3.10+ non-AnnotatedPython 3.6+ non-Annotated from typing import Annotated from fastapi.tiangolo.com * Query와 Path 변수 정의하는 방법과 동일하게 Cookie p..

[Apache Spark and Python] Udemy - Taming Big data with Apache Spark and Python

https://www.udemy.com/course/best-hadoop/ 0. Intro 데이터 엔지니어링에 관심이 생겨 아파치 스파크와 파이썬으로 데이터를 만져볼 수 있는 강의를 구매했다. instructor는 Frank Kane이라는 사람이다. 어... 분명히 Hive 및 MySQL을 사용하여 관계형 데이터를 분석 Hadoop 및 관련 기술을 사용하여 "빅데이터"를 관리하는 분산 시스템 설계 HDFS 및 MapReduce를 사용하여 대규모 데이터 저장 및 분석 라고 했는데 왠지 데이터 분석을 할 것만 같은 느낌이 든다. 파이썬 및 SQL을 미리 알고있으면 좋다. 필수 요구사항은 아니다. 0. How to use the courese Udemy 질의응답 기능을 적극 이용하라고 한다. 그 옆에 학습 알..

Apache 2023.04.02

[FastAPI] FastAPI [8] Body - Nested Models

https://fastapi.tiangolo.com/tutorial/body-nested-models/ Body - Nested Models - FastAPI Body - Nested Models With FastAPI, you can define, validate, document, and use arbitrarily deeply nested models (thanks to Pydantic). List fields You can define an attribute to be a subtype. For example, a Python list: This will make tags be a list, althou fastapi.tiangolo.com * FastAPI를 통해 임의의 깊은중첩모델을 정의, 검..

[FastAPI] FastAPI [7] Body - Fields

https://fastapi.tiangolo.com/tutorial/body-fields/ Body - Fields - FastAPI Body - Fields The same way you can declare additional validation and metadata in path operation function parameters with Query, Path and Body, you can declare validation and metadata inside of Pydantic models using Pydantic's Field. Import Field First, you fastapi.tiangolo.com * 경로연산함수의 Query, Path, Body paramter에서 부가적 검증..

[FastAPI] FastAPI [6] Body - Multiple Parameters

https://fastapi.tiangolo.com/tutorial/body-multiple-params/ Body - Multiple Parameters - FastAPI Body - Multiple Parameters Now that we have seen how to use Path and Query, let's see more advanced uses of request body declarations. Mix Path, Query and body parameters First, of course, you can mix Path, Query and request body parameter declarations fre fastapi.tiangolo.com Path와 Query를 어떻게 이용하는지 ..