250x250
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
- Python
- paper review
- Deep Learning
- 논문 리뷰
- 웹 프로그래밍
- MariaDB
- Web Programming
- 파이썬
- yaml
- Django
- 그래픽 유저 인터페이스
- POD
- k8s
- Tkinter
- Computer Vision
- vue.js
- OpenCV
- 파이토치
- 데이터베이스
- 컴퓨터 비전
- numpy
- Docker
- tensorflow
- kubernetes
- 딥러닝
- FLASK
- GUI
- pytorch
- 장고
- 텐서플로우
Archives
- Today
- Total
목록blueprint (1)
Maxima's Lab
[Flask] Flask 모듈화 방법 (Blueprint) & current_app
안녕하세요, 오늘은 Flask 애플리케이션에서 Blueprint 패키지를 활용하여 애플리케이션의 구성요소들 모듈화하고, current_app을 사용해서 config 구성요소에 접근하는 방법에 대해서 알아보겠습니다. /myapplication /main_1 __init__.py views.py /main_2 __init__.py views.py __init__.py app.py 위의 구조에서 /myapplication/main_1/.__init__.py 파일에 대해서 알아보겠습니다. # /myapplication/main_1/.__init__.py from flask import Blueprint main_1 = Blueprint('main_1', __name__, url_prefix='/main_1') ..
Web Programming
2023. 11. 13. 23:11