Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Why use werkzeug when there is flask [closed]

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

like image 948
fear_matrix Avatar asked Feb 15 '12 06:02

fear_matrix


1 Answers

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.

like image 82
Amber Avatar answered Sep 24 '22 11:09

Amber