I'm looking for WSGI request and response wrappers for having a more convenient interface than the plain WSGI environ
and start_response
callback. I want something like WebOb or Werkzeug. But I don't like WebOb's PHP-like usage of GET and POST for parameter dictionaries, because HTTP is not limited to GET and POST and the distinction is not necessary when accessing params.
What request/response wrapper do you prefer and why?