Exploring Flask, a Python Web Framework

There had been previous explorations into writing web server software using Ruby on Rails, which is not the best fit for this project. The first issue is the language - we need to talk to a Python library and there's no need to jump through language translation layers for a simple project. The second issue is complexity - Rails is a full MVC framework for building an app on a database and we don't need that here, either.
If we wanted the Python equivalent to Ruby on Rails, the popular choice of the day is Django. But since we don't, Flask is the lighter-weight framework we'll play with today. Sometime in the future, when a project is right for Django, we'll explore using the right tool for the job.
Flask is a thin layer that's a short step above having to call Python's HTTP and URL classes directly, and can be very quick to get started. A simple Hello World type of app requires only a single Python file and a few lines of code, no database configuration and project generation necessary. The developer builds up from this simple foundation. This is great for keeping things simple and easy to work with. For the most part, features that a developer would want can be added piecemeal.
The downside is that Flask also skips out on a lot of web practices that aren't explicitly features, but are very nice to have by default. For example, the default Ruby on Rails generator for HTML <form>
includes a token to prevent cross-site request forgery. This is not explicitly a feature a developer would think of adding, and could easily get overlooked especially when the forms are generated manually. Fortunately most of the Flask add-ons to generate forms - like this one - automatically includes CSRF protection.
Some caution would be warranted if the Flask application is going to be a public web site, but for a local network project prototype it should be good enough.