Metadata-Version: 1.0
Name: wsgize
Version: 0.4
Summary: WSGI without the WSGI
Home-page: UNKNOWN
Author: L. C. Rees
Author-email: lcrees@gmail.com
License: BSD
Description: 'Middleware for WSGI-enabling Python callables
        including:
        
        * Middleware that makes non-WSGI Python functions, callable classes, or
        methods into WSGI applications
        * Middleware that automatically handles generating WSGI-compliant HTTP
        response codes, headers, and compliant iterators
        * An HTTP response generator
        * A secondary WSGI dispatcher
        
        Examples:
        
        # Automatically handle HTTP response, header, and iterator generation
        
        @wsgize()
        def app(environ, start_response):
        return 'Hello World'
        
        # Make a normal Python function into a WSGI application
        
        @wsgiwrap()
        def app(name):
        return 'Hello ' % name
        
Keywords: WSGI dispatch middleware web HTTP decorators
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Classifier: Topic :: Internet :: WWW/HTTP :: WSGI
Classifier: Topic :: Internet :: WWW/HTTP :: WSGI :: Middleware
