Saved Bookmarks
| 1. |
Flask is a micro framework, what does “micro” mean in this context? |
|
Answer» The “micro” means Flask aims to keep the core features simple but extensible. It is classified as a micro web framework because it does not REQUIRE particular tools or libraries. It does not mean that our whole web application has to fit into a single Python MODULE, nor does it imply that Flask is LACKING some functionality. Although, it does not support database abstraction LAYER, form validation, or any other pre-existing third-party tools. But it SUPPORTS extensions to which we can add features to our applications. |
|