Routes in Flask

All route is GET in default, but it can change by setting method

@app.route('/', methods=['POST'])
def home():
    return "<h1>hello world</h1>" 

image 13.png