1. FIrst we imported the Flask class. An instance of this class will be our WSGI application.
1. First we imported the Flask class. An instance of this class will be our WSGI application.
2. Next we create an instance of this class.
3. We then use the route() decorator to tell Flask waht URL should trigger our function.
4. The function is given a name which is also used to generate URLs for that particular function, and returns the message we want to display in the user’s browser.