Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | - | - | ||||
docs/ | 03-May-2024 | - | 6,923 | 5,291 | ||
webob/ | 03-May-2024 | - | 8,184 | 6,526 | ||
.gitignore | D | 03-May-2024 | 302 | 31 | 30 | |
.travis.yml | D | 03-May-2024 | 343 | 24 | 18 | |
MANIFEST.in | D | 03-May-2024 | 175 | 7 | 6 | |
PKG-INFO | D | 03-May-2024 | 1.9 KiB | 42 | 37 | |
README.chromium | D | 03-May-2024 | 174 | 9 | 8 | |
README.rst | D | 03-May-2024 | 967 | 25 | 18 | |
setup.cfg | D | 03-May-2024 | 316 | 20 | 15 | |
setup.py | D | 03-May-2024 | 2.1 KiB | 62 | 54 | |
tox.ini | D | 03-May-2024 | 1.1 KiB | 52 | 45 | |
toxfast.ini | D | 03-May-2024 | 108 | 11 | 7 |
README.chromium
1Name: WebOb 2URL: https://pypi.python.org/pypi/WebOb/1.5.0a0 3Version: 1.5.0a0 4Date: 2015-07-26 5Revision: N/A 6License: MIT 7License File: docs/license.txt 8Security Critical: no 9
README.rst
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