• Home
Name Date Size #Lines LOC

..--

docs/03-May-2024-6,9235,291

webob/03-May-2024-8,1846,526

.gitignoreD03-May-2024302 3130

.travis.ymlD03-May-2024343 2418

MANIFEST.inD03-May-2024175 76

PKG-INFOD03-May-20241.9 KiB4237

README.chromiumD03-May-2024174 98

README.rstD03-May-2024967 2518

setup.cfgD03-May-2024316 2015

setup.pyD03-May-20242.1 KiB6254

tox.iniD03-May-20241.1 KiB5245

toxfast.iniD03-May-2024108 117

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