meta-ast 0.7.0

Polyglot static-analysis engine: extract symbols and cross-language dependency graphs from 9 supported source languages, with optional MetaCall deployment manifest generation.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
def hello():
    pass


def greet(name):
    print(f"Hello, {name}")


async def fetch_data(url):
    pass


def add(a: int, b: int) -> int:
    return a + b