enotkrutoy's picture
Update app.py
c16abc8 verified
raw
history blame contribute delete
195 Bytes
# app.py
from flask import Flask, render_template
app = Flask(__name__)
@app.route("/")
def home():
return render_template("index.html")
if __name__ == "__main__":
app.run(debug=True)