1
0
Fork
You've already forked python-dependency-graph
0
A tool to create diagrams of your python module.
  • Python 100%
2023年08月30日 12:14:44 +02:00
dependency_graph Fix TypeError for builtin classes 2023年08月30日 12:11:19 +02:00
LICENSE Add GNU-GPLv3 license 2023年08月27日 18:01:52 +02:00
README.md Add example usage in README.md 2023年08月30日 12:14:44 +02:00
requirements.txt Add dependencies to requirements.txt 2023年08月27日 19:07:34 +02:00

Python Dependency Graph

A tool to create diagrams of your python module.

Usage

Example usage

This script has been tested with this project.

python -c "import dependency_graph as dg; import divera; module=divera.api; r=dg.analyse_module(module, depth=8); dg.write_to_json(r); dg.write_to_graph(r, title=module.__name__)"