1``webob`` README 2================ 3 4.. image:: https://pypip.in/version/WebOb/badge.svg?style=flat 5 :target: https://pypi.python.org/pypi/WebOb/ 6 :alt: Latest Version 7 8.. image:: https://travis-ci.org/Pylons/webob.png?branch=master 9 :target: https://travis-ci.org/Pylons/webob 10 11.. image:: https://readthedocs.org/projects/webob/badge/?version=latest 12 :target: http://docs.pylonsproject.org/projects/webob/en/latest/ 13 :alt: Documentation Status 14 15WebOb provides objects for HTTP requests and responses. Specifically 16it does this by wrapping the `WSGI <http://wsgi.org>`_ request 17environment and response status/headers/app_iter(body). 18 19The request and response objects provide many conveniences for parsing 20HTTP request and forming HTTP responses. Both objects are read/write: 21as a result, WebOb is also a nice way to create HTTP requests and 22parse HTTP responses. 23 24Please see the `full documentation <http://webob.rtfd.org/>`_ for details. 25