Up to higher level directory | |||
Name | Date | Size | |
---|---|---|---|
.gitignore | 08-Oct-2015 | 302 | |
.travis.yml | 08-Oct-2015 | 343 | |
docs/ | 08-Oct-2015 | ||
MANIFEST.in | 08-Oct-2015 | 175 | |
PKG-INFO | 08-Oct-2015 | 1.9K | |
README.chromium | 08-Oct-2015 | 174 | |
README.rst | 08-Oct-2015 | 967 | |
setup.cfg | 08-Oct-2015 | 316 | |
setup.py | 08-Oct-2015 | 2.1K | |
tox.ini | 08-Oct-2015 | 1.1K | |
toxfast.ini | 08-Oct-2015 | 108 | |
webob/ | 08-Oct-2015 |
1 Name: WebOb 2 URL: https://pypi.python.org/pypi/WebOb/1.5.0a0 3 Version: 1.5.0a0 4 Date: 2015-07-26 5 Revision: N/A 6 License: MIT 7 License File: docs/license.txt 8 Security Critical: no 9
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 15 WebOb provides objects for HTTP requests and responses. Specifically 16 it does this by wrapping the `WSGI <http://wsgi.org>`_ request 17 environment and response status/headers/app_iter(body). 18 19 The request and response objects provide many conveniences for parsing 20 HTTP request and forming HTTP responses. Both objects are read/write: 21 as a result, WebOb is also a nice way to create HTTP requests and 22 parse HTTP responses. 23 24 Please see the `full documentation <http://webob.rtfd.org/>`_ for details. 25