How to beautify JSON in Python?

后端 未结 13 1364
渐次进展
渐次进展 2021-01-29 18:55

Can someone suggest how I can beautify JSON in Python or through the command line?

The only online based JSON beautifier which could do it was: http://jsonviewer.stack.h

13条回答
  •  小鲜肉
    小鲜肉 (楼主)
    2021-01-29 19:45

    alias jsonp='pbpaste | python -m json.tool'
    

    This will pretty print JSON that's on the clipboard in OSX. Just Copy it then call the alias from a Bash prompt.

提交回复
热议问题