ast-decompiler


Nameast-decompiler JSON
Version 0.7.0 PyPI version JSON
download
home_page
SummaryPython module to decompile AST to Python code
upload_time2022-10-04 00:13:17
maintainer
docs_urlNone
author
requires_python>=3.6
license
keywords ast decompiler
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI
coveralls test coverage No coveralls.
            **************
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 supports Python 3.6 through 3.11.


            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "ast-decompiler",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.6",
    "maintainer_email": "",
    "keywords": "ast,decompiler",
    "author": "",
    "author_email": "Jelle Zijlstra <jelle.zijlstra@gmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/32/41/34be61bdc044829af6edcff823485d881883ab5b33fa68d9ae9a53be594d/ast_decompiler-0.7.0.tar.gz",
    "platform": null,
    "description": "**************\nast_decompiler\n**************\n\nast_decompiler is a module for generating Python code given an AST.\n\nA usage example::\n\n    >> import ast\n    >> from ast_decompiler import decompile\n\n    >> decompile(ast.parse('(a + b) * c'))\n    (a + b) * c\n\nThis module supports Python 3.6 through 3.11.\n\n",
    "bugtrack_url": null,
    "license": "",
    "summary": "Python module to decompile AST to Python code",
    "version": "0.7.0",
    "project_urls": {
        "Home": "https://github.com/JelleZijlstra/ast_decompiler"
    },
    "split_keywords": [
        "ast",
        "decompiler"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2f0798dfdc6f03b0f56b0b23dd7042f97b45bba623298cfe393a24bc00901c36",
                "md5": "c81f5919a3ddac5f8d37be95a64af9ee",
                "sha256": "5ebd37ba129227484daff4a15dd6056d87c488fa372036dd004ee84196b207d3"
            },
            "downloads": -1,
            "filename": "ast_decompiler-0.7.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "c81f5919a3ddac5f8d37be95a64af9ee",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.6",
            "size": 13609,
            "upload_time": "2022-10-04T00:13:16",
            "upload_time_iso_8601": "2022-10-04T00:13:16.361145Z",
            "url": "https://files.pythonhosted.org/packages/2f/07/98dfdc6f03b0f56b0b23dd7042f97b45bba623298cfe393a24bc00901c36/ast_decompiler-0.7.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "324134be61bdc044829af6edcff823485d881883ab5b33fa68d9ae9a53be594d",
                "md5": "b28e70638087584c922048daf9eeaef2",
                "sha256": "efc3a507e5f8963ec7b4b2ce2ea693e3755c2f52b741c231bc344a4526738337"
            },
            "downloads": -1,
            "filename": "ast_decompiler-0.7.0.tar.gz",
            "has_sig": false,
            "md5_digest": "b28e70638087584c922048daf9eeaef2",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.6",
            "size": 18413,
            "upload_time": "2022-10-04T00:13:17",
            "upload_time_iso_8601": "2022-10-04T00:13:17.753396Z",
            "url": "https://files.pythonhosted.org/packages/32/41/34be61bdc044829af6edcff823485d881883ab5b33fa68d9ae9a53be594d/ast_decompiler-0.7.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2022-10-04 00:13:17",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "JelleZijlstra",
    "github_project": "ast_decompiler",
    "travis_ci": true,
    "coveralls": false,
    "github_actions": true,
    "test_requirements": [],
    "tox": true,
    "lcname": "ast-decompiler"
}
        
Elapsed time: 0.25358s