cyyeh's picture
refactor
a5f8603
raw
history blame
297 Bytes
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)