python -m json.tool输出中文

时间:2019-01-29 04:02:24

标签: python json cjk

原始文本文件“ chinese.txt”,如下所示:

{"type":"FeatureCollection","text":"你好"}

在Mac上的终端运行命令,如下所示

$ cat chinese.txt | python -m json.tool

输出为

{
    "text": "\u4f60\u597d",
    "type": "FeatureCollection"
}

如何添加参数以避免出现“ \ u4f60 \ u597d”并获得“你好”

我想做的是Mapbox的调用API或HERE查找某个位置的地址? Mapbox或HERE的输出不是很漂亮,我想使用python -m json.tool重新格式化其输出,并使中文字符不像\ uxxxx。

1 个答案:

答案 0 :(得分:1)

这是json.tool的来源:

prog = 'python -m json.tool'
description = ('A simple command line interface for json module '
               'to validate and pretty-print JSON objects.')
parser = argparse.ArgumentParser(prog=prog, description=description)
parser.add_argument('infile', nargs='?', type=argparse.FileType(),
                    help='a JSON file to be validated or pretty-printed')
parser.add_argument('outfile', nargs='?', type=argparse.FileType('w'),
                    help='write the output of infile to outfile')
parser.add_argument('--sort-keys', action='store_true', default=False,
                    help='sort the output of dictionaries alphabetically by key')
options = parser.parse_args()

infile = options.infile or sys.stdin
outfile = options.outfile or sys.stdout
sort_keys = options.sort_keys
with infile:
    try:
        obj = json.load(infile)
    except ValueError as e:
        raise SystemExit(e)
with outfile:
    json.dump(obj, outfile, sort_keys=sort_keys, indent=4)
    outfile.write('\n')

问题是您无法将参数添加到对json.dump的调用中-您想这样做:

json.dump(obj, outfile, sort_keys=sort_keys, indent=4, ensure_ascii=False)

但是您必须为此编写自己的脚本,json.tool在这里无济于事。