package documentation
A call graph depicts calling relationships between subroutines in a computer program. It is an essential component in most static analysis and can be leveraged to build more sophisicated applications such as profiling, vunerability propagation and refactoring.
Please note scalpel.pycg module is a wrapper of [PyCG](https://pypi.org/project/pycg/). It aims to construct the call graphs for given Python projects.
The basic node can be either a function, a class or a module. The edges represent calling relationships between program nodes.
| Module | pycg |
This file is a wrapper of the pycg, a practical python call graph generator. Please refer to: 1. https://github.com/vitsalis/PyCG 2. https://pypi.org/project/pycg/ 3. Vitalis Salis, Thodoris Sotiropoulos, Panos Louridas, Diomidis Spinellis and Dimitris Mitropoulos... |