Make a simple web application (blog) using Flask in Python 3
$ pip install flask
$ export FLASK_APP=app
$ export FLASK_ENV=development
$ flask run
Then visit http://127.0.0.1:5000/
This development server
should not be used in a production deployment.