https://github.com/dcramer/peek
Take a peek at whats slowing down your Python application
https://github.com/dcramer/peek
Last synced: 4 months ago
JSON representation
Take a peek at whats slowing down your Python application
- Host: GitHub
- URL: https://github.com/dcramer/peek
- Owner: dcramer
- License: apache-2.0
- Created: 2012-03-01T01:18:01.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2012-03-16T01:33:09.000Z (over 13 years ago)
- Last Synced: 2025-02-06T11:18:57.150Z (4 months ago)
- Language: Python
- Homepage:
- Size: 155 KB
- Stars: 20
- Watchers: 4
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.rst
- License: LICENSE
Awesome Lists containing this project
README
Peek
====**This project is still under development**
Peek is a profiling tool which aims to help you track down the core performance problems in your Python application.
It does this by installing a trace hook, which looks at every Python call (similar to line_profiler), and records
how long that call took.Credits
-------The implementation of the tracer and several of the "hacks" required to get things like this in place are heavily
inspired by Ned Batchelder's coverage.py project.