awesome-python-ast icon indicating copy to clipboard operation
awesome-python-ast copied to clipboard

Python tools, libraries and resources about AST (as in Abstract Syntax Trees)

Results 6 awesome-python-ast issues
Sort by recently updated
recently updated
newest added

This PR adds a new section that contains some more awesomeness.

This adds a link to synr, octoml's stable ast library for python.

You have added a detailed list of various AST analysis tools. Can you please tell me is it better to rely on a third tool or using the AST package...

This repo https://github.com/spookylukey/pyastgrep should definitely get a mention here - it has more features than astpath, is easier to use and is actively maintained. (I am not in any way...

I recently created a package [abstracttree](https://pypi.org/project/abstracttree/) that has some support for ast. It can visualise ast objects in different ways. For example: ```python import ast from abstracttree import plot_tree import...

I just came across this list, and noticed that my astsearch project is described as using XPath. It actually accepts code snippets with wildcards, e.g. `? / ?` finds any...