Metadata-Version: 1.0
Name: gprof
Version: 1.0.1
Summary: Greenlet profiler. Measures CPU time (instead of wall time) and designed specially for greenlets.
Home-page: https://bitbucket.org/rushman/gprof
Author: Sergey Kirillov
Author-email: sergey.kirillov@gmail.com
License: UNKNOWN
Description: Greenlet profiler (gprof)
        =========================
        
        Measures `CPU time <http://en.wikipedia.org/wiki/CPU_time>`_ (instead of `wall time <http://en.wikipedia.org/wiki/Wall-clock_time>`_) and designed specially for greenlets. Can help you to find CPU heavy parts of your code and improve responsiveness of your gevent-based application.
        
        
        Example usage:
        
        .. code:: python
        
            from gprof import GProfiler
        
            p = GProfiler()
            p.start()
            myapplication.run()
            p.stop()
            p.save('profile')
        
        
Platform: UNKNOWN
