I need to understand the code base of a relatively big Python library. The code being too convoluted, I thought it would be a good start to know which methods call which other methods when I execute an imported function
that I need to use.
Is it possible to do something along the lines of:
from library import function
get_traceback(function)
And get a list of all the functions being called in the background by the library?