Tracy of AI
8/10/2018 - 1:35 PM

Routing

Example of basic routing in Flask

#Routing
@app.route('/hello/<string:name>') # example.com/hello/Anthony
def hello(name):
 return 'Hello ' + name + '!' # returns hello Anthony!