A VS Code extension that visualizes Python Abstract Syntax Trees (AST) as interactive node-based graphs. Explore code structure visually, navigate between graph nodes and source code, and understand ...
A Python library for matching and querying Python AST nodes, inspired by libcst's matcher API but designed to work with Python's built-in ast module. AST Predicates provides a declarative way to ...
Overview Python's "ast" module transforms the text of Python source code into an object stream. It's a more powerful way to walk through Python code, analyze its components, and make changes than ...