Simple Flask Application

Spencer Roffey
1 min readFeb 11, 2022

We are going to build a simple flask application that will have one route and return a HTML file.

Flask is a micro web framework written in Python. It is extremely user-friendly and a very good framework to start your developer journey.

Installing Flask

First, we have to install flask. To do this we will use pip.

pip3 install Flask

--

--