While learning a new Python package it takes a great deal of time to learn about Python objects which makes the package. For example, in Pandas library, there is a method called to_html. It is a method of a class DataFrame, and DataFrame subclasses from a class NDFrame which resides in a module generic.py, etc...
I wonder if there is any tool which would visualize different relations between Python objects, for example inheritance.
I'm looking for a tool where you would type a Python method(with the class it belongs to), and the tool would visualize the relations - (which classes the class inherits from, or which other modules it uses).