معرفی شرکت ها


ast2json-0.3


Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر

توضیحات

convert a python source code into json-dumpable data (dict and lists with strings, ints, ...)
ویژگی مقدار
سیستم عامل -
نام فایل ast2json-0.3
نام ast2json
نسخه کتابخانه 0.3
نگهدارنده []
ایمیل نگهدارنده []
نویسنده Laurent Peuch
ایمیل نویسنده cortex@worlddomination.be
آدرس صفحه اصلی https://github.com/Psycojoker/ast2json
آدرس اینترنتی https://pypi.org/project/ast2json/
مجوز BSD
Introduction ============ ast2json is a small module that will convert any python AST node into its ast representation formated in a JSON compatible python representation (list and dicts containing string, ints and null). Installation ============ :: pip install ast2json # or to have lastest version pip install git+git://github.com/Psycojoker/ast2json.git Usage ===== :: >>> import json >>> from ast import parse >>> from ast2json import ast2json >>> ast = ast2json(parse(open('some_python_source_file.py').read())) >>> print json.dumps(ast, indent=4) If you are lazy, "str2json" will apply the "parse" method of ast on a string for you, so you'll be able to write: :: >>> str2json(open('some_python_source_file.py').read()) Example ======= This is the result of converting 'print "Hello World!"' (and applying json.dumps on the result). :: { "body": [ { "_type": "Print", "nl": true, "col_offset": 0, "dest": null, "values": [ { "s": "Hello World!", "_type": "Str", "lineno": 1, "col_offset": 6 } ], "lineno": 1 } ], "_type": "Module" } Changelog ========= 0.3 (2022-04-25) ---------------- * add support for elipsis 0.2.1 (2016-11-13) ------------------ * fix broken pip installation by @abolger 0.2 (2016-09-03) ---------------- * python 3 support and some unit testing by Juncheol Cho @zironycho Licence ======= BSD


نحوه نصب


نصب پکیج whl ast2json-0.3:

    pip install ast2json-0.3.whl


نصب پکیج tar.gz ast2json-0.3:

    pip install ast2json-0.3.tar.gz