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!