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?

+2


source to share


5 answers


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.

+1


source


cProfile or Hotshot .



+2


source


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)

+1


source


NetBeans with python plugin?

0


source


Perhaps a Python Call Graph ?

0


source







All Articles