Is there a tool for python that can visualize methods and classes?

Viewed 71

Is there a tool that can visualize (such as tree view) all python functions and classes in a program and which function calls other functions? Trying to find dependencies of some real messy code.

1 Answers

Yes, there is. It is called pycallgraph.

Related