Package wsgitools
[hide private]
[frames] | no frames]

Source Code for Package wsgitools

 1  """ 
 2  wsgitools is meant to be used as a toolbox when working with wsgi. Everything 
 3  should fit together like lego bricks. Almost everything contained implements 
 4  the wsgi interface. 
 5   
 6  The toolbox provides: 
 7   - a set of wsgi applications in L{wsgitools.applications} 
 8   - an interface to filter wsgi applications and some filters in 
 9     L{wsgitools.filters} 
10   - a set of middlewares that could not be implemented using the filter interface 
11     in L{wsgitools.middlewares} 
12   - digest authentication (RFC2617) in L{wsgitools.digest} 
13   - servers for the scgi protocol in L{wsgitools.scgi} 
14   - adapter classes for an interface that might in distant future be the second 
15     version of wsgi in L{wsgitools.adapters} 
16  """ 
17