• Home
  • History
  • Annotate
  • only in /external/chromium-trace/catapult/third_party/WebOb/
NameDateSize

..23-Aug-20164 KiB

.gitignore23-Aug-2016302

.travis.yml23-Aug-2016343

docs/23-Aug-20164 KiB

MANIFEST.in23-Aug-2016175

PKG-INFO23-Aug-20161.9 KiB

README.chromium23-Aug-2016174

README.rst23-Aug-2016967

setup.cfg23-Aug-2016316

setup.py23-Aug-20162.1 KiB

tox.ini23-Aug-20161.1 KiB

toxfast.ini23-Aug-2016108

webob/23-Aug-20164 KiB

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