From cdcdfc497336de5563913a7e4242417f62896186 Mon Sep 17 00:00:00 2001 From: Khalil Habib Shariff <115427472+Khaleelhabeeb@users.noreply.github.com> Date: Mon, 8 Jan 2024 18:59:44 +0100 Subject: [PATCH] doc: clarity about flask (#4973) added clarity about flask features --- .../content/106-python-frameworks/100-synchronous/101-flask.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/data/roadmaps/python/content/106-python-frameworks/100-synchronous/101-flask.md b/src/data/roadmaps/python/content/106-python-frameworks/100-synchronous/101-flask.md index 00519d4b5..580b4a61e 100644 --- a/src/data/roadmaps/python/content/106-python-frameworks/100-synchronous/101-flask.md +++ b/src/data/roadmaps/python/content/106-python-frameworks/100-synchronous/101-flask.md @@ -1,6 +1,6 @@ # Flask -Flask is a micro web framework written in Python. It is classified as a microframework because 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. +Flask is a micro web framework written in Python. It is classified as a microframework because 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. Instead, it provides flexibility by requiring you to choose and integrate the best libraries for your project's needs. Visit the following resources to learn more: