Metadata-Version: 1.1
Name: keas.profile
Version: 0.3.0
Summary: WSGI Profiler for Python Paste
Home-page: http://pypi.python.org/pypi/keas.profile
Author: Marius Gedminas and the Zope Community.
Author-email: zope-dev@zope.org
License: ZPL 2.1
Description: ===================
        Profiler middleware
        ===================
        
        This package provides middleware for profiling of the application.  It's based
        on `paste.debug.profile <http://pythonpaste.org/modules/debug.profile.html>`_,
        but uses cProfile instead of hotshot.
        
        If you use PasteScript, enabling the profiler is as simple as adding ::
        
          [filter-app:profile]
          use = egg:keas.profile#profiler
          next = main
        
        to your paster configuration file and passing ``--app-name=profile`` to
        ``paster``.  When you access your web application, every page will have the
        profiler output appended to the end of the document body.
        
        |buildstatus|_
        
        .. |buildstatus| image:: https://api.travis-ci.org/zopefoundation/keas.profile.png?branch=master
        .. _buildstatus: https://travis-ci.org/zopefoundation/keas.profile
        
        
        =======
        CHANGES
        =======
        
        
        0.3.0 (2013-03-29)
        ------------------
        
        - Depend on WebOb instead of Paste.
        
        - Add support for Python 3.
        
        
        0.2.0 (2010-08-07)
        ------------------
        
        - Remove pyprof2calltree support; looks like it's buggy (or incompatible with
          Python 2.6) and just breaks everything.
        
        
        0.1.0 (2008-12-12)
        ------------------
        
        - Initial release
        
Keywords: zope3 profile paste wsgi
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Zope Public License
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Framework :: Zope3
