랜더딩 함수로 외부에서 작성된 html을 받아올 수 있음!!!
from flask import Flask, render_template
app = Flask (_ _name_ _)
@app.route("/")
def function_name() :
return render_template('파일명.html')
if _ _name_ _ == " _ _main_ _ " :
app.run ()
랜더딩 함수로 외부에서 작성된 html을 받아올 수 있음!!!
from flask import Flask, render_template
app = Flask (_ _name_ _)
@app.route("/")
def function_name() :
return render_template('파일명.html')
if _ _name_ _ == " _ _main_ _ " :
app.run ()