文件名称:jsoncat:流JSON漂亮打印机
文件大小:3KB
文件格式:ZIP
更新时间:2024-06-10 05:32:38
Python
一个漂亮的打印机,用于包含多个json对象的文件。 概述 考虑以下文件: { " abc " : " def " }{ " ham " : " spam " , " numbers " : [ 1 , 2 , 3 ]}{ " foo " : " bar " } 从整体上看,此文件的内容不构成有效的json对象。 相反,该文件包含json对象流。 Jsoncat将按照以下方式漂亮地打印此文件: { " abc " : " def " } { " ham " : " spam " , " numbers " : [ 1 , 2 , 3 ] } { " foo " : " bar " } 安装 pip install jsoncatcmd 用法 从文件中读取: jsoncat myfile.json 从标准输入中读取: cat myfile.json | jso
【文件预览】:
jsoncat-master
----.gitignore(2KB)
----setup.cfg(40B)
----README.md(724B)
----jsoncat.py(309B)
----cmds()
--------jsoncat(463B)
----__init__.py(27B)
----requirements.txt(0B)
----setup.py(383B)