Flask - Code a simple App
Learn how to code a simple web app in Flask.
This tutorial aims to help beginners to start coding simple apps using Flask, the popular Python framework. Before reading or coding anything suggested in this tutorial, it might be a good idea to access the official Flask resources (docs, quickstart):
Flask - the official website
What is Flask
Flask is a lightweight WSGI web application framework. It is designed to make getting started quick and easy, with the ability to scale up to complex applications. Classified as a microframework, Flask is written in Python and it does not require particular tools or libraries. It has no database abstraction layer, form validation, or any other components where pre-existing third-party libraries provide common functions.
Environment
To use the stater, Python3 should be installed properly in the workstation. If you are not sure if Python is properly installed, please open a terminal and type python --version
. The full ist with dependencies and tools required to build the app:
Python3 - the programming language used to code the app
GIT - used to clone the source code from the Github repository
Basic development tools (g++ compiler, python development libraries ..etc) used by Python to compile the app dependencies in your environment.
Check Python version (using the terminal)
Check GIT command tool (using the terminal)
Flask - a minimal app
The most simple app, coded in Flask, looks like this:
We save this source code in hello.py
. The name is not important, but we will reference the file name in the next section of this tutorial.
What this code means
Flask module is imported
the app (WSGI compliant) is constructed by Flask
a (default) route is defined that returns a friendly message to the user:
Hello from Flask
When a request is received by our app, usually sent by the browser, the Flask core tries to match the path and execute the right handler.
Execute our minimal app
Please notice that export before we start the app using Flask development server. Flask itself should be informed (via the environment) what file should load and execute. In our sample is hello.py
.
At this moment, we can visit the app in the browser, on port 5000
, the default port used by Flask to serve apps. To start the app on a different port, we must call Flask using --port
argument.
This time, the app is started on port 9999
.
Flask Resources
More Flask Starters provided by AppSeed
Join the Discord community and chat with fellow developers
Last updated