Python

Python

[Python] Fast API

Fast API 설치Fast API 의존성 및 서버 설치 - 프로젝트 구성은 직접해야함# FastAPI와 ASGI 서버(uvicorn) 설치pip install fastapi uvicorn[standard]# 설치 확인pip listCookiecutter - 필요한 템플릿을 git주소를 통해 가져올수있음# Cookiecutter 설치pip install cookiecutter# FastAPI 템플릿으로 프로젝트 생성cookiecutter FastAPI-MVC - 간단한 mvc 프로젝트# 설치pip install fastapi-mvc# 프로젝트 생성fastapi-mvc new my-project# 실행cd my-projectmake installmake run Project Start가상환경 생성pytho..

Python

[Python] Dunder Methods

Dunder MethodsPython이 내부적으로 호출하는 특별한 메서드오버로딩해서 사용가능하며, 연산자도 오버로딩이 가능하다사용 예시# 연산자 오버로딩p1 = Point(1, 2)p2 = Point(3, 4)print(p1 + p2) # __add__ 호출 → Point(4, 6)print(p1 - p2) # __sub__ 호출 → Point(-2, -2)print(p1 == p2) # __eq__ 호출 → Falseprint(p1 주요 Dunder Methods 목록객체 생성/삭제__init__(self) # 생성자__del__(self) # 소멸자문자열__str__(self) # str() 호출 시__repr__(self) # repr() 호출 시__fo..

Bogass
'Python' 카테고리의 글 목록