views:

118

answers:

2

Are there WSGI request and response wrappers for Python 3?

WebOb looks nice (although there is some critique), but it seems to be written in Python <3. Werkzeug seems also to be written in Python <3.

Should I write my own request and response wrappers for Python 3? Maybe this would be impossible, since WSGI seems to be somewhat broken in Python 3. So what to do? Give up Python 3 and go back to Python 2?

A: 

No, there are not WSGI for Python3. It occurs because of new string types.

uhbif19
+2  A: 

My recommendation: right now, Python 2.x should be used for production quality stuff. I know, Python 3 is technically very interesting, but right now sticking with Python 2 is MUCH easier and MUCH more productive.

jsalonen