File size: 297 Bytes
a5f8603
a908fc5
231b6fa
9256956
7d4d7b2
1
2
3
4
5
6
from py_code_analyzer import CodeFetcher, CodeImportsAnalyzer, ImportsGraphVisualizer

python_files = CodeFetcher().get_python_files("cyyeh", "gradio", "gradio")
imports_graph = CodeImportsAnalyzer(python_files).analyze().generate_imports_graph()
ImportsGraphVisualizer().visualize(imports_graph)