elasticsearch에 보면 json 출력을 예쁘게 (&pretty) 할 수 있다.
만약 url을 통해 들어오는 json이라면 python을 활용해 예쁘게 출력할 수 있다.
echo '{"url":"http:\/\/search.google.com\/api/v2/keyword", "param":"abc"}' | python -mjson.tool
{
"url": "http://search.google.com/api/v2/keyword",
"param": "abc"
}
'python' 카테고리의 다른 글
[python] datetime 예제 (0) | 2017.11.20 |
---|---|
SyntaxError: Non-ASCII character '\xec' in file 해결 (0) | 2017.11.07 |
jinja2.exceptions.UndefinedError: 'dict object' has no attribute 'iteritems' 에러 해결 (0) | 2017.10.11 |
virtualenv 셋팅하는 방법(python3) (0) | 2017.10.10 |
fatal error: Python.h: No such file or directory #include "Python.h" 해결하기 (0) | 2017.10.10 |