Skip to content

Files

Latest commit

6d3faa0 · Sep 3, 2021

History

History

routing

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
Sep 3, 2021
Sep 3, 2021
from flask import Flask

app = Flask(__name__)

@app.route('/')
def index():
    return 'This is Index Page'

@app.route('/login')
def login():
    return 'This is Login Page'

@app.route('/hello')
def hello():
    return 'Hello, World'

if __name__=="__main__":
    app.run(debug=True)