A tool to create diagrams of your python module.
- Python 100%
| dependency_graph | Fix TypeError for builtin classes | |
| LICENSE | Add GNU-GPLv3 license | |
| README.md | Add example usage in README.md | |
| requirements.txt | Add dependencies to requirements.txt | |
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__)"