通过 jsoncsv 模块
一、安装 jsoncsv module
pip install jsoncsv
安装完毕后,会多一个 jsoncsv
命令
# jsoncsv --help
Usage: jsoncsv [OPTIONS] [INPUT] [OUTPUT]
Options:
-A, --array read input file as json array
-s, --sep SEPARATOR_TYPE separator
--safe use safe mode
-r, --restore restore expanded json
-e, --expand expand json (default True)
--help Show this message and exit.
二、转换
cat raw.json | jsoncsv | mkexcel > output.csv
cat raw.json | jsoncsv | mkexcel -t xls > output.xls
网友评论