본문 바로가기

Python/Fast API3

[Fast API] 기존 Oracle DB 정보 연동 ORM model 클래스 작성 Fast API 에서 CRUD 작업을 하기 위해서는 1. DB connection 정보 (database.py) 2. DB의 실제 테이블 정보를 담고 있는 model 클래스 (models.py) 3. api에서 입력과 출력 형태를 정의하는 schema 클래스 (schemas.py) 4. 실제 CRUD 작업이 이루어지는 메소드가 구현되어야 한다. (crud.py) 참고: https://fastapi.tiangolo.com/ko/tutorial/sql-databases/ SQL (Relational) Databases - FastAPI SQL (Relational) Databases Warning The current page still doesn't have a translation for this lan.. 2022. 12. 30.
[Fast API] SQLAlchemy로 Oracle DB 연결하기 FastAPI 공식 홈페이지에서는 SQLAlchemy 로 다음 RDBMS 에 연결할 수 있다고 소개한다. PostgreSQL MySQL SQLite Oracle Microsoft SQL Server, etc https://fastapi.tiangolo.com/ko/tutorial/sql-databases/ SQL (Relational) Databases - FastAPI SQL (Relational) Databases Warning The current page still doesn't have a translation for this language. But you can help translating it: Contributing. FastAPI doesn't require you to use a S.. 2022. 12. 28.
[Fast API] PyCharm Community - setting PyCharm Pro 버전에서는 FastAPI 관련 라이브러리 설치와 환경 설정이 자동 실행되어 프로젝트 생성이 수월하지만, Community 버전은 이 기능이 지원되지 않아 사용자가 직접 해야 한다. 1. 프로젝트 생성 새 가상환경에서 프로젝트를 생성한다. (로컬에는 python 3.9이 설치되어 있어 3.9 버전을 기준으로 프로젝트를 생성했다) 2. 라이브러리 설치 python packages 탭에서 fastapi와 uvicorn을 설치한다. 터미널이 익숙한 사람은 다음 명령어로 라이브러리를 설치하면 된다. pip install fastapi pip install uvicorn 3. main.py 파일 생성 디렉토리 내에 main.py 파일을 생성한다. main.py 에는 다음과 같이 작성한다. (공.. 2022. 12. 26.