Skip to main content

Convert Python Abstract Syntax Trees to readable source code

Project description

pypi license

Convert Python Abstract Syntax Trees (ASTs) to readable source code.

Xylem is useful for when you want to make dynamic changes to Python code/ASTs, but also need to write those changes back as source code.

It’s also very small (<500 lines), pure-Python, and produces (mostly) readable source code.

In writing this, I made heavy use of the unofficial AST documentation at Green Tree Snakes.

Installation

Xylem will work on Python 3.4 or later. I’ll eventually get around to testing it on Python 2.7-3.3.

From PyPI

Install Xylem by running pip3 install xylem from the command line.

From GitHub

Clone or download the git repo, navigate to the directory, and run:

python3 setup.py sdist
cd dist
pip3 install xylem-<version>.tar.gz

Usage

to_source is likely the only method you’ll need to use:

>>> from xylem import to_source
>>> import ast
>>> tree = ast.parse("print('hello world')")
>>> ast.dump(tree)
"Module(body=[Expr(value=Call(func=Name(id='print', ctx=Load()), args=[Str(s='Hello world')], keywords=[]))])"
>>> to_source(tree)
"print('hello world')"

compare_ast may also be useful for determining if two ASTs are functionally equivalent.

Development

Xylem versioning functions on a MAJOR.MINOR.PATCH.[DEVELOP] model. Only stable, non development releases will be published to PyPI. Because Xylem is still a beta project, the MAJOR increment will be 0. Minor increments represent new features. Patch increments represent problems fixed with existing features.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

xylem-0.10.0.tar.gz (7.2 kB view details)

Uploaded Source

File details

Details for the file xylem-0.10.0.tar.gz.

File metadata

  • Download URL: xylem-0.10.0.tar.gz
  • Upload date:
  • Size: 7.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: Python-urllib/3.6

File hashes

Hashes for xylem-0.10.0.tar.gz
Algorithm Hash digest
SHA256 3bfd065b785c10704e9f2a07d168e66fe381b1cdc245fc5a067967b02565efce
MD5 8b723a3ee2270231913283faf435fd4f
BLAKE2b-256 ed5c4997d1c599a235b75cb0d60a487a0097b1a8dcd9f5878906c2be2fd87fc9

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page