Metadata-Version: 1.0
Name: Dozer
Version: 0.1
Summary: GC WSGI Explorer
Home-page: http://www.pylonshq.com/
Author: Ben Bangert
Author-email: ben@groovie.org
License: Public Domain
Description: 
        Dozer
        =====
        
        Dozer is a WSGI middleware version of Robert Brewer's
        `Dowser CherryPy tool <http://www.aminus.net/wiki/Dowser>`_ that
        displays information as collected by the gc module to assist in
        tracking down memory leaks.
        
        Usage::
        
        from dozer import Dozer
        
        # my_wsgi_app is a WSGI application
        wsgi_app = Dozer(my_wsgi_app)
        
        Assuming you're serving your application on the localhost at port 5000,
        you can then load up ``http://localhost:5000/_dozer/index`` to view the
        gc info.
        
        
Keywords: web wsgi memory profiler
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: Public Domain
Classifier: Programming Language :: Python
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: WSGI
Classifier: Topic :: Software Development :: Libraries :: Python Modules
