Metadata-Version: 1.0
Name: profilestats
Version: 1.0.1
Summary: Decorator for profiling individual functions and converting profiling data to the kcachegrind format.
Home-page: http://pypi.python.org/pypi/profilestats
Author: Hanno Schlichting
Author-email: hannosch@plone.org
License: BSD
Description: Overview
        ========
        
        This module contains a simple helper decorator which allows you to profile
        a function and write the profiling data to the filesystem in both the pstats
        and the kcachegrind format.
        
        The decorator can be used as::
        
        from profilestats import profile
        
        @profile
        def my_function(args, etc):
        pass
        
Keywords: profile kcachegrind
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
