Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

WSGI request and response wrappers for Python 3 [closed]

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?

like image 947
deamon Avatar asked Sep 16 '10 10:09

deamon


1 Answers

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.

like image 96
jsalonen Avatar answered Nov 03 '22 01:11

jsalonen