• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..--

docs/22-Nov-2023-6,9235,291

webob/22-Nov-2023-8,1846,526

.gitignoreD22-Nov-2023302 3130

.travis.ymlD22-Nov-2023343 2418

MANIFEST.inD22-Nov-2023175 76

PKG-INFOD22-Nov-20231.9 KiB4237

README.chromiumD22-Nov-2023174 98

README.rstD22-Nov-2023967 2518

setup.cfgD22-Nov-2023316 2015

setup.pyD22-Nov-20232.1 KiB6254

tox.iniD22-Nov-20231.1 KiB5245

toxfast.iniD22-Nov-2023108 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