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
"""Main module for the test project."""

from utils import helper_function

def main():
    """Entry point for the application."""
    print("Hello from main!")
    result = helper_function(42)
    return result

if __name__ == "__main__":
    main()