File size: 323 Bytes
a5f8603
a908fc5
82531de
 
 
9256956
7d4d7b2
1
2
3
4
5
6
7
8
from py_code_analyzer import CodeFetcher, CodeImportsAnalyzer, ImportsGraphVisualizer

python_files = CodeFetcher().get_python_files(
    "cyyeh", "py-code-analyzer", "py_code_analyzer"
)
imports_graph = CodeImportsAnalyzer(python_files).analyze().generate_imports_graph()
ImportsGraphVisualizer().visualize(imports_graph)