Skip to content

Instantly share code, notes, and snippets.

@tristanlatr
tristanlatr / ast_visitor_template.py
Created June 22, 2022 19:48 — forked from jtpio/ast_visitor_template.py
Template for visiting all Python AST nodes
"""
All the methods were generated based on the list of nodes from the
"Green Tree Snakes" guide:
https://greentreesnakes.readthedocs.io/en/latest/index.html
"""
import ast
class Visitor(ast.NodeVisitor):