Metadata-Version: 1.1
Name: yappi
Version: 0.93
Summary: Yet Another Python Profiler
Home-page: http://yappi.googlecode.com/
Author: Sumer Cip
Author-email: sumerc@gmail.com
License: MIT
Download-URL: http://bitbucket.org/sumerc/yappi/downloads/yappi-0.93.tar.gz
Description: 
        Yappi
        ===================
        
        [![Build Status](https://drone.io/bitbucket.org/sumerc/yappi/status.png)](https://drone.io/bitbucket.org/sumerc/yappi/latest)
        
        Motivation:
        ===================
        CPython standard distribution is coming with three profilers. cProfile, Profile and hotshot. 
        cProfile module is implemented as a C module based on lsprof, Profile is in pure Python and the 
        hotshot can be seen as a small subset of a cProfile. The motivation to implement a new profiler is
        that all of these profilers lacks the support of multi-threaded programs. If you want to profile a 
        multi-threaded application, you must give an entry point to these profilers and then maybe merge 
        the outputs. None of these profilers is designed to work on long-running multi-threaded application. 
        While implementing a game server, it turns out that is is impossible to profile an application 
        retrieve the statistics then stop and then start later on on the fly(without affecting the profiled
        application). With the experience of implementing a game server in Python, we have identified most 
        of the problems, tricky parts regarding profiler usage and so, we have come up with simple but 
        powerful requirements.
        
        Features:
        ===================
        * Ability to hook underlying threading model events/properties. (*new in 0.92*)
        * Decorator to profile individual functions easily. (*new in 0.92*)
        * Profiler results can be saved in callgrind and pstat formats. (new in 0.82) 
        * Profiler results can be merged from different sessions on-the-fly. (new in 0.82)
        * Profiler results can be easily converted to pstats. (new in 0.82) 
        * Supports profiling per-thread CPU time. See http://en.wikipedia.org/wiki/CPU_time for details. (new in 0.62)
        * Profiling of multithreaded Python applications transparently. 
        * Profiler can be started from any thread at any time.
        * Ability to get statistics at any time without even stopping the profiler.
        * Various flags to arrange/sort profiler results.
          
        Limitations:
        ===================
        * Latest version of Yappi supports Python 2.6.x <= x <= Python.3.4
        
        
        
        
        
        
        
Keywords: python thread multithread profiler
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.1
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Operating System :: OS Independent
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Software Development :: Libraries :: Python Modules
