Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Module dependency graph in Python 3

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

like image 514
Neil G Avatar asked May 30 '14 20:05

Neil G


2 Answers

python3 dependency graphs generator

https://github.com/Trim21/snakefood3

I had the same question 3 years ago, so I forked snakefood and fixed it for Python 3.

like image 61
Trim21 Avatar answered Sep 19 '22 14:09

Trim21


I built a tool based on pydeps here.

like image 20
Neil G Avatar answered Sep 20 '22 14:09

Neil G