https://github.com/frohoff/yappi
Imported from https://bitbucket.org/sumerc/yappi
https://github.com/frohoff/yappi
Last synced: 12 days ago
JSON representation
Imported from https://bitbucket.org/sumerc/yappi
- Host: GitHub
- URL: https://github.com/frohoff/yappi
- Owner: frohoff
- License: mit
- Created: 2018-06-22T16:42:02.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2018-06-22T16:47:08.000Z (about 8 years ago)
- Last Synced: 2025-02-28T16:11:59.007Z (over 1 year ago)
- Language: Python
- Homepage:
- Size: 993 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Yappi
===================
[](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 analyze per-thread information. (*new in 0.94*)
* 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