added app.py

This commit is contained in:
gashapwn 2020-11-21 20:52:33 +00:00
parent 966eb9fe6a
commit b6bfdf9315
2 changed files with 16 additions and 0 deletions

11
app.py Normal file
View 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)

5
app.py~ Normal file
View File

@ -0,0 +1,5 @@
from flask import Flask, render_template
app=Flask(__name__)
@app.rotue("/")