A library to facilitate easier manipulation of Python AST (abstract syntax tree) objects.
Project description
ast-match
A library to facilitate easier manipulation of Python AST (abstract syntax tree) objects.
This library allows you to write the syntax in an intuitive way, instead of having to write the names of the internal classes in ast
module.
For manipulating the internal structure, it's recommended to read through https://docs.python.org/3/library/ast.html to know what kind of nodes may appear in an AST.
It's recommended to read through these at least once (as well as linked documentations at the bottom of the page) at least once, it will save you lots of time later on.
Limitations
This module does not allow you to manipulate the tree in all possible ways. For that you still need to tinker with the AST itself.
Related packages
https://greentreesnakes.readthedocs.io/en/latest/examples.html#real-projects
Usage
Import everything (apart from testing purpose it's recommended to avoid import *
):
>>> from ast_match import *
>>> from pprint import pprint
First, note that Python distinguishes between statement and expression, so you need to specify the type explicitly:
>>> expr("a=1")
Traceback (most recent call last):
...
AssertionError
>>> pp(stmt("a=1"))
<ast.AST: a = 1>
Here the pp
function used to "pretty-print" the resulting ast.AST
object. If you use IPython you may want to refer to the section below for automatic pretty-printing.
The API somewhat resemble re
module API:
|
|
---|---|
>>> import re
>>> pattern=re.compile("(?P<last>.*)-1")
>>> match=pattern.fullmatch("7*8-1")
>>> match.groupdict()
{'last': '7*8'}
|
>>> from ast_match import *
>>> pattern=compile(expr("_last-1"))
>>> match=pattern.fullmatch(expr("7*8-1"))
>>> match
Match{'last': <ast.AST: 7 * 8>}
|
>>> pattern=re.compile(r"(?P<x>\d+)\*(?P<y>\d+)")
>>> pattern.sub(r"\g<y>*\g<x>", "1*2+3*4")
'2*1+4*3'
|
>>> pattern=compile(expr("_x * _y"))
>>> pp(pattern.sub(repl(expr("_y*_x")), expr("1*2+3*4")))
<ast.AST: 2 * 1 + 4 * 3>
|
>>> pattern=re.compile(r"(?P<a>\d+)\*(?P<b>\d+)")
>>> pprint([*pattern.finditer("1*2+3*4")])
[<re.Match object; span=(0, 3), match='1*2'>,
<re.Match object; span=(4, 7), match='3*4'>]
|
>>> pattern=compile(expr("_a*_b"))
>>> pprint([*pattern.finditer(expr("1*2+3*4"))])
[Match{'a': <ast.AST: 1>, 'b': <ast.AST: 2>},
Match{'a': <ast.AST: 3>, 'b': <ast.AST: 4>}]
|
Note for Vim users
The code inside strings may not be syntax-highlighted as Python code.
To fix, consider adding the following to .vim/after/syntax/python.vim
:
syn region pythonSpecialInclude1
\ start=+\(expr\|stmt\)(r\?\z(['"]\)+ end=+\z1)+ keepend
\ contains=pythonSpecialIncludeInner1
syn region pythonSpecialIncludeInner1
\ start=+\z(['"]\)\zs+ end=+\ze\z1+ keepend
\ contained contains=TOP
You may want to test on some Python code as follows (the part inside expr
should be highlighted as Python code instead of string)
expr("lambda x: 1")
expr(r"lambda x: 1")
expr("""
for i in range(5):
pass
""")
expr(r"""
for i in range(5):
pass
""")
expr('lambda x: 1')
stmt('for i in range(5): pass')
For functions other than expr
or stmt
it should still be highlighted as string:
f('for i in range(5): pass')
f(r'for i in range(5): pass')
Note for IPython users
For usage in IPython, the default display of ast
-module objects is not very nice:
In [19]: ast.parse('for i in range(10): print(i, i+1)')
Out[19]: <ast.Module at 0x7fc4b17d6110>
So it's recommended you use the following.
formatter=get_ipython().display_formatter.formatters["text/plain"]
formatter.for_type(ast.AST, lambda o, p, cycle: p.text(ast.dump(o, indent=2)))
#formatter.for_type(ast.AST, lambda o, p, cycle: p.text(prettyrepr(o))) # alternative, prettier but does not show the internal
#formatter.pop(ast.AST) # revert
Then the display will be more readable:
In [21]: ast.parse('for i in range(10): print(i, i+1)')
Out[21]:
Module(
body=[
For(
target=Name(id='i', ctx=Store()),
iter=Call(
func=Name(id='range', ctx=Load()),
args=[
Constant(value=10)],
keywords=[]),
body=[
Expr(
value=Call(
func=Name(id='print', ctx=Load()),
args=[
Name(id='i', ctx=Load()),
BinOp(
left=Name(id='i', ctx=Load()),
op=Add(),
right=Constant(value=1))],
keywords=[]))],
orelse=[])],
type_ignores=[])
It may also be desirable to put the code into .ipython/profile_default/startup/
or similar so that it's run automatically when IPython starts.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file ast-match-0.1.0.tar.gz
.
File metadata
- Download URL: ast-match-0.1.0.tar.gz
- Upload date:
- Size: 22.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 98e532b7ed7d70f32ea0a9104f19eb8a140049419595a60ff994755ebc079ed5 |
|
MD5 | e61edeffb943a5dbc9f015bd1602b9eb |
|
BLAKE2b-256 | 5e1d670342fbfa870724dde610e94390e9f7cf10f4b04e64242a682ef9608ce1 |
File details
Details for the file ast_match-0.1.0-py3-none-any.whl
.
File metadata
- Download URL: ast_match-0.1.0-py3-none-any.whl
- Upload date:
- Size: 22.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 936145aff8b1ecf84e8fe0a82760c1e64fbe4203bd7637a682b30179ffab7aec |
|
MD5 | 4c1531d03a18fd262e5e28845bd1185c |
|
BLAKE2b-256 | 36630860513f44ff2259c635aa287e4084a81c411a45d9149b49f036f942cce1 |