Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- docker
- python
- node.js
- rabbitmq
- Redis
- nginx
- laravel
- 블레이드 템플릿
- mariadb
- SQL
- AWS
- Switch
- Backbone.js
- Redux
- Go
- Babel
- fastapi
- webpack
- linux
- Node
- CentOS
- For
- NCP
- React
- javascript
- Machine Learning
- nodejs
- php
- 기초 수학
- deep learning
Archives
- Today
- Total
728x90
반응형
목록SQLAlchemy (1)
개발일기

필수 설치 요소 pip3 install sqlalchemy # ORM을 통하여 DB 쿼리문을 작성하기 위해 설치 pip3 install python-dotenv # DB관련 정보를 입력할 때, 환경변수를 통하여 내용을 입력하기 위해 dotenv 설치 폴더구조 └── app ├── __init__.py ├── apis │ ├── __init__.py │ └── test.py ├── core │ ├── __init__.py │ └── config.py ├── crud │ ├── __init__.py │ └── crud_test.py ├── db │ ├── __init__.py │ ├── connection.py │ ├── models │ │ ├── __init__.py │ │ └── test_model.py..
프로그래밍 언어/Python
2021. 12. 3. 17:52
728x90
반응형