pyjson:Python 中的一个简单的 JSON 解析器字符串器,用于学习目的

时间:2024-08-01 11:16:45
【文件属性】:

文件名称:pyjson:Python 中的一个简单的 JSON 解析器字符串器,用于学习目的

文件大小:7KB

文件格式:ZIP

更新时间:2024-08-01 11:16:45

Python

pyjson 编辑一个简单的 JSON 解析器/字符串器,用于学习目的的 Python 中。 尝试根据规则进行验证。 用法和示例 将内容字符串化为 JSON import pyjson my_data = { "my_array" : [[ 0 , 0 ], [ 1 , 2 ]], "is_something" : True , "this_is" : None , "dict" : { "name" : "pedrochaves" , "another_list" : [ "my_string" ] } } # Returns a string representation of the data in JSON json_string = pyjson . stringify ( my_data ) # ..


【文件预览】:
pyjson-master
----.gitignore(240B)
----__init__.py(206B)
----pyjson()
--------__init__.py(713B)
--------stringifier.py(2KB)
--------parser.py(4KB)
--------utils.py(805B)
----README.md(594B)
----tests()
--------json_file.py(383B)
--------__init__.py(0B)
--------stringify.py(3KB)
--------parser.py(2KB)

网友评论