Hello. Is there a way to look at dependencies from...
# general
l
Hello. Is there a way to look at dependencies from the “dependency” point of view? eg. What parts of the code depend on a certain 3rdparty library. And or possibly display the dependency path. eg:
Copy code
fancy_3rd_party_library
  mymodule_1.py
  mymodule_4.py via mymodule_1.py
or
Copy code
mymodule_4.py depends on fancy_3rd_party_library because it imports mymodule_1.py which imports fancy_3rd_party_library.