codegraph-python 0.4.1

Python parser plugin for CodeGraph - extracts code entities and relationships from Python source files
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
"""Utility functions for the test project."""

def helper_function(value):
    """A simple helper function."""
    return value * 2

def another_helper():
    """Another helper function."""
    pass

class UtilityClass:
    """A utility class."""
    
    def process(self, data):
        """Process some data."""
        return data.upper()