Metadata-Version: 1.0
Name: ast-decompiler
Version: 0.1
Summary: Python module to decompile AST to Python code
Home-page: https://github.com/JelleZijlstra/ast_decompiler
Author: Jelle Zijlstra
Author-email: jelle.zijlstra@gmail.com
License: Apache 2.0 license
Description: **************
        ast_decompiler
        **************
        
        ast_decompiler is a module for generating Python code given an AST.
        
        A usage example::
        
            >> import ast
            >> from ast_decompiler import decompile
        
            >> decompile(ast.parse('(a + b) * c'))
            (a + b) * c
        
        This module has only been tested on Python 2.7.
        
Platform: UNKNOWN
