0

Which Python WEB frameworks are based on the Werkzeug library?

I'm implementing adapters for a package to be used with various WEB frameworks. Currently I 'm working on a Flask adapter to inherit from a Werkzeug base adapter. This would make implementation of adapters for other Werkzeug based frameworks very easy. I created a Webapp2 adapter based on WebObBaseAdapter this way.

I just would like to have a list of all the frameworks that use or are built around Werkzeug. I wonder whether there are any except Flask.

Peter Hudec
  • 2,462
  • 3
  • 22
  • 29
  • Their website says "Flask, tipfy and many more". But why do you care? This does not look like a programming question to me... – l4mpi May 23 '13 at 09:45
  • 1
    And how does it look like like? Like a German craftsman's question? I wouldn't ask if it were on their website. – Peter Hudec May 23 '13 at 10:43
  • Why not asking A. Ronacher himself? But perhaps he doesn't even know :) – michaelmeyer May 23 '13 at 11:25
  • 2
    Maybe you could parse requirements for python web frameworks on pypi? – grizwako May 23 '13 at 11:46
  • 3
    @JohnClemens, and the other two philosophers, Are you serious?! Your reasoning for closing this question is a **capital contradiction**! I expected just **names of the frameworks** or **links to their websites** as answers which I strongly believe are **facts** and **references**. I cannot imagine a **debate**, **argument**, **polling** or **extended discussion** about this question. And look at the two answers, they'r in deed just **references** with some additional info which I was not asking for! – Peter Hudec May 27 '13 at 10:00
  • Just for comparison, [this one](http://stackoverflow.com/questions/702179/django-vs-other-python-web-frameworks?rq=1) is still open! – Peter Hudec May 27 '13 at 18:34

2 Answers2

1

Flask

http://flask.pocoo.org/docs/

Flask depends on two external libraries: the Jinja2 template engine and the Werkzeug WSGI toolkit.

fainle
  • 19
  • 4
0

Flask is a microframework for Python based on Werkzeug, Jinja 2 and good intentions.

The documentation is easy to understand. You can start here Flask Homepage

Exac
  • 113
  • 9