[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..