Search code examples
pythonflaskwerkzeug

Why use werkzeug when there is flask


I am just curious to know as why should we use werkzeug when flask is there. Any specific reason to consider werkzeug over flask.


Solution

  • Flask and Werkzeug are different things. Flask contains Werkzeug as one of the things in it, but also has much more (which might be unwanted).

    Flask is a web microframework. Werkzeug is a WSGI middleware.