Skip to main content

pycgl - Practical Python Call Graphs

Project description

PyCG - Practical Python Call Graphs

Linters Tests

PyCG generates call graphs for Python code using static analysis. It efficiently supports

  • Higher order functions
  • Twisted class inheritance schemes
  • Automatic discovery of imported modules for further analysis
  • Nested definitions

You can read the full methodology as well as a complete evaluation on the ICSE 2021 paper.

You can cite PyCG as follows. Vitalis Salis, Thodoris Sotiropoulos, Panos Louridas, Diomidis Spinellis and Dimitris Mitropoulos. PyCG: Practical Call Graph Generation in Python. In 43rd International Conference on Software Engineering, ICSE '21, 25–28 May 2021.

PyCG is archived. Due to limited availability, no further development improvements are planned. Happy to help anyone that wants to create a fork to continue development.

Installation

PyCG is implemented in Python3 and requires Python version 3.4 or higher. It also has no dependencies. Simply:

pip install pycg

Usage

~ >>> pycg -h
usage: __main__.py [-h] [--package PACKAGE] [--fasten] [--product PRODUCT]
                        [--forge FORGE] [--version VERSION] [--timestamp TIMESTAMP]
                        [--max-iter MAX_ITER] [--operation {call-graph,key-error}]
                        [--as-graph-output AS_GRAPH_OUTPUT] [-o OUTPUT]
                        [entry_point ...]

positional arguments:
  entry_point           Entry points to be processed

optional arguments:
  -h, --help            show this help message and exit
  --package PACKAGE     Package containing the code to be analyzed
  --fasten              Produce call graph using the FASTEN format
  --product PRODUCT     Package name
  --forge FORGE         Source the product was downloaded from
  --version VERSION     Version of the product
  --timestamp TIMESTAMP
                        Timestamp of the package's version
  --max-iter MAX_ITER   Maximum number of iterations through source code. If not specified a fix-point iteration will be performed.
  --operation {call-graph,key-error}
                        Operation to perform. Choose call-graph for call graph generation (default) or key-error for key error detection on dictionaries.
  --as-graph-output AS_GRAPH_OUTPUT
                        Output for the assignment graph
  -o OUTPUT, --output OUTPUT
                        Output path

The following command line arguments should used only when --fasten is provied:

  • --product: The name of the package.
  • --forge: Source the package was downloaded from.
  • --version: The version of the package.
  • --timestamp : The timestamp of the package's version.

Call Graph Output

Simple JSON format

The call edges are in the form of an adjacency list where an edge (src, dst) is represented as an entry of dst in the list assigned to key src:

{
    "node1": ["node2", "node3"],
    "node2": ["node3"],
    "node3": []
}

FASTEN Format

For an up-to-date description of the FASTEN format refer to the FASTEN wiki.

Key Errors Output

We are currently experimenting on identifying potential invalid dictionary accesses on Python dictionaries (key errors). The output format for key errors is a list of dictionaries containing:

  • The file name in which the key error was identified
  • The line number inside the file
  • The namespace of the accessed dictionary
  • The key used to access the dictionary
[{
    "filename": "mod.py",
    "lineno": 2,
    "namespace": "mod.<dict1>",
    "key": "key2"
},
{
    "filename": "mod.py",
    "lineno": 8,
    "namespace": "mod.<dict1>",
    "key": "nokey"
}]

Examples

All the entry points are known and we want the simple JSON format

~ >>> pycg --package pkg_root pkg_root/module1.py pkg_root/subpackage/module2.py -o cg.json

All entry points are not known and we want the simple JSON format

~ >>> pycg --package django $(find django -type f -name "*.py") -o django.json

We want the FASTEN format:

~ >>> pycg --package pypi_pkg --fasten --product "pypipkg" --forge "PyPI" \
        --version "0.1" --timestamp 42 \
        pypi_pkg/module1.py pkg_root/subpackage/module2.py -o cg.json

Running Tests

From the root directory, first install the mock package:

pip3 install mock

Τhen, simply run the tests by executing:

make test

Changes

We state the changes compare to the original repo as per the Apache-2.0 license:

  • Changed capitalization of PyCG to pycg to match Linux directories compatibility.
  • Added author name to the pyproject.toml file.
  • Removed black as a linter and use ruff instead in pyproject.toml.
  • Published the module under the name pycg-l in PyPI.
  • Renamed all pycg prefixes in the source code to pycgl (along with the source directory name).

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pycg_fork-0.0.8.tar.gz (59.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

pycg_fork-0.0.8-py3-none-any.whl (61.4 kB view details)

Uploaded Python 3

File details

Details for the file pycg_fork-0.0.8.tar.gz.

File metadata

  • Download URL: pycg_fork-0.0.8.tar.gz
  • Upload date:
  • Size: 59.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.6.3

File hashes

Hashes for pycg_fork-0.0.8.tar.gz
Algorithm Hash digest
SHA256 d6014aab99a4060dc0a827757d790f1840badb484ee9aa0c9f6b4f6ed2a4b5f0
MD5 f8bc69a1fe369d1639b6681f636ba322
BLAKE2b-256 e377d3ddd6571e96833a87e24db13d3c65967f8c7f69d60948b904f075a97f80

See more details on using hashes here.

File details

Details for the file pycg_fork-0.0.8-py3-none-any.whl.

File metadata

  • Download URL: pycg_fork-0.0.8-py3-none-any.whl
  • Upload date:
  • Size: 61.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.6.3

File hashes

Hashes for pycg_fork-0.0.8-py3-none-any.whl
Algorithm Hash digest
SHA256 7d7a943bc5602cce8c37e2141222b595dc0f60bb2e7dbc509c3a03cf3828297b
MD5 0bea2f9b76d794980efe701a812fa6ee
BLAKE2b-256 1fc2461a3c06f5a8e3447bae3e5e4264c03369918af2f65c3d22af3846d63aae

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page