Tool that create a graph of code to show dependencies between code entities (methods, classes and etc). CodeGraph does not execute code, it is based only on lex and syntax parse, so it not need to install all your code dependencies.
Usage:
pip install codegraph
cg /path/to/your_python_code # path must be absolute
your_python_code - module with your python code
For example, if I put codegraph in my user home directory path will be:
cg /Users/myuser/codegraph/codegraph
Pass '-o' flag if you want only print dependencies in console and don't want graph visualisation
cg /path/to/your_python_code -o
If you want to change view and play with graph output - you can check 'vizualyzer.py' and play with matplotlib and networkX settings.
In default view - red line show dependencies between entities in different modules. Green - entities in module.
- Create normal readme
- Add tests
- Add possibility to work with any code based (not depend on Python language only)
- Work on visual part of Graph (now it is not very user friendly)
- Add support to variables (names) as entities
- Contributing:
Open PR with improvements that you want to add
If you have any questions - write me xnuinside@gmail.com


