An open API service indexing awesome lists of open source software.

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

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.