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
# Various import styles
import os
import sys
from pathlib import Path
from typing import List, Dict, Optional
from collections import *
from . import local_module
from ..parent import something

def process_file(path: Path) -> Optional[Dict]:
    """Process a file and return data."""
    return None