Module dependency graph in Python 3

dependency-management, graph, python, python-3.x

Solution

I built a tool based on pydeps here.

Problem

How do I graph module dependencies in Python 3? I found snakefood, but it seems to only work with Python 2.

Original source

Related problems