forked from amitojsingh366/python-simple-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.py
24 lines (16 loc) · 1.17 KB
/
app.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
from flask import * #importing flask (Install it using python -m pip install flask)
app = Flask(__name__) #initialising flask
@app.route("/") #defining the routes for the home() funtion (Multiple routes can be used as seen here)
@app.route("/home")
def home():
return render_template("home.html") #rendering our home.html contained within /templates
@app.route("/account", methods=["POST", "GET"]) #defining the routes for the account() funtion
def account():
usr = "<User Not Defined>" #Creating a variable usr
if (request.method == "POST"): #Checking if the method of request was post
usr = request.form["name"] #getting the name of the user from the form on home page
if not usr: #if name is not defined it is set to default string
usr = "<User Not Defined>"
return render_template("account.html",username=usr) #rendering our account.html contained within /templates
if __name__ == "__main__": #checking if __name__'s value is '__main__'. __name__ is an python environment variable who's value will always be '__main__' till this is the first instatnce of app.py running
app.run(debug=True,port=4949) #running flask (Initalised on line 4)