package documentation
scalpel.import_graph is data structure for contructing an import graph of a python project. An import graph represents the dependency relationship of module files in the given project. This information can be important to understand the import flow, hierarchy, encapsulation as well as software architecture. Each node in the import graph datastructure is a module file that can be manipulated to extract statements, function calls. All the leaf nodes in the import graph can be processed future.
| Module | import |
The module provides data structure to build import graph of a python project which represents the import relationships between different modules in the project, which can be used for program analysis. |