codeBarer
codeBarer

Reputation: 2398

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

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.

Upvotes: 3

Views: 310

Answers (1)

Igor Rivin
Igor Rivin

Reputation: 4864

Yes, there is. It is called pycallgraph.

Upvotes: 2

Related Questions