본문 바로가기
python web framework

flask render_template, flask html 파일 연동

by 타닥타닥 토다토닥 부부 2023. 4. 21.
반응형

flask render_template, flask html 파일 연동

  • 플라스크 앱 활용은 위한 디렉션 구성이 아래와 같다면 ,
├── templates
│    └── main.html
└── app.py

 

  • 아래 플라스크 코드를 활용하여  html 파일을 연동할 수 있습니다.
from flask import Flask, render_template
 
app = Flask(__name__)
 
@app.route('/')
def main():
    return render_template("main.html")

if __name__ == '__main__':
    app.run(host="0.0.0.0", port=8060)

 

반응형

댓글