0 votes
in Python Flask by
Why is Flask called a Microframework?

1 Answer

0 votes
by
Flask is called a microframework because Flask only provides core features such as request, routing, and blueprints. For other features, such as Caching, ORM, forms, etc., we need to make use of Flask-Extensions.
...