A fast (almost) drop-in implementation of ast.walk.
pip install fast-walkfrom fast_walk import walk
import ast
code = """
def hello( x,y, z ):
print( x+y+z )
"""
for node in walk(ast.parse(code)):
pass- Rust (latest stable)
- Python 3.13+
- maturin
# Install maturin
pip install maturin
# Build the package
maturin develop
# Or build a release version
maturin build --releaseMIT