1
0
mirror of https://github.com/kamranahmedse/developer-roadmap.git synced 2025-08-01 06:50:26 +02:00

doc: clarity about flask (#4973)

added clarity about flask features
This commit is contained in:
Khalil Habib Shariff
2024-01-08 18:59:44 +01:00
committed by GitHub
parent d4b4b3c55c
commit cdcdfc4973

View File

@@ -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: