Git Product home page Git Product logo

py-ast-utils's Introduction

A collection of util modules for working with Python abstract syntax trees.

In the current state, the two most useful parts are:
1. source_match.GetSource: Allows for "round tripping" between python
source and an AST, preserving all formatting.

In more detail: given a node in a Python AST and the text it should
match against, attaches .matcher functions to each node in the tree, which
know how to return the source that generated them, with formatting (line
breaks, spaces, comments, docstrings) preserved. In other words, if we call 
this on the _ast.Module node with the text that generated the ast, then call
module_node.matcher.GetSource(), we will get the exact copy of the source
we passed in.

Example:
>>> some_code = open('code.py').read()
>>> import ast
>>> module_node = ast.parse(some_code)
>>> import source_match
>>> source_match.GetSource(module_node, some_code)
>>> assert some_code == module_node.matcher.GetSource()

This preservation persists even after new nodes are added (they get default
formatting) or nodes are removed.

2. create_node.py: This module contains a bunch of functions for creating
nodes with reasonable defaults.

NOTE: This is not an official Google project!

py-ast-utils's People

Contributors

ncklug avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.