added app.py
This commit is contained in:
parent
966eb9fe6a
commit
b6bfdf9315
11
app.py
Normal file
11
app.py
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
from flask import Flask, render_template
|
||||||
|
|
||||||
|
app=Flask(__name__)
|
||||||
|
|
||||||
|
@app.route("/")
|
||||||
|
def home():
|
||||||
|
app.route('/')
|
||||||
|
return render_template("home.html")
|
||||||
|
|
||||||
|
if __name__=="__main__":
|
||||||
|
app.run(debug=True)
|
Loading…
Reference in New Issue
Block a user