Expand description
Python language parser using tree-sitter-python.
Extracts function definitions (including async def), class definitions,
call expressions, lambdas as anonymous functions, and optionally
identifiers as variables.
Functionsยง
- parse_
python - Parse Python source code and return the extracted facts.
- parse_
python_ detailed - Parse Python source code and return facts including variable nodes.
- parse_
python_ ๐impl