A tool for analyzing and entering code?
I recently came across a tool that could analyze running python code and create a visual representation similar to a code editor to allow you to step through different parts of the code, seeing how many times each part was called, the execution time, and more.
I cannot find a link to it again. Does anyone know what this might be?
source to share
Found what I was looking for: Code Investigator
CodeInvestigator is a tracing tool for Python programs. All information about the execution time is recorded. Read the code along with its runtime details in the Firefox browser. See what your program did when it started.
source to share
RunSnakeRun is a UI for cProfile / Hotshot (see James ) that also provides profiling data visualization.
Another useful link might be a link to PyCon2009 Talk Introduction to Python Profiling (# 65)
source to share