Home | History | Annotate | only in /external/chromium-trace/trace-viewer/third_party/WebOb
Up to higher level directory
NameDateSize
.gitignore08-Oct-2015302
.travis.yml08-Oct-2015343
docs/08-Oct-2015
MANIFEST.in08-Oct-2015175
PKG-INFO08-Oct-20151.9K
README.chromium08-Oct-2015174
README.rst08-Oct-2015967
setup.cfg08-Oct-2015316
setup.py08-Oct-20152.1K
tox.ini08-Oct-20151.1K
toxfast.ini08-Oct-2015108
webob/08-Oct-2015

README.chromium

      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 

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 
     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