Metadata-Version: 1.0
Name: DebugHeaders
Version: 0.1
Summary: Debug headers (and bodies) of WSGI requests and responses
Home-page: UNKNOWN
Author: Ian Bicking
Author-email: ianb@colorstudy.com
License: MIT
Description: This WSGI middleware will display the headers of the incoming request
        and the outgoing response.  You can also optionally display the
        request or response body.
        
        Use it like this::
        
        from debugheaders import DebugHeaders
        
        def application(environ, start_response):
        blah blah blah
        
        application = DebugHeaders(application,
        show_body=True, show_response_body=True,
        output='wsgi.errors')
        
        `show_body` shows the request body, `show_response_body` does what you
        would expect, and this information is written to the stream given by
        `output` (defaults to stdout, can be any object with a ``.write()``
        method, and `'wsgi.errors'` is special and means to write to
        ``environ['wsgi.errors']``).
        
Keywords: wsgi debugging
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Web Environment
Classifier: Framework :: Paste
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Topic :: Internet :: WWW/HTTP :: WSGI
Classifier: Topic :: Internet :: WWW/HTTP :: WSGI :: Middleware
