EN
Python pretty print JSON command line
5 points
Hi, today we would like to show you how to pretty print JSON using python from command line level.
Quick solution:
xxxxxxxxxx
1
echo '{"id": 2, "name": "Tom", "age": 25}' | python -m json.tool
Practical example:
xxxxxxxxxx
1
[root]# echo '{"id": 2, "name": "Tom", "age": 25}' | python -m json.tool
2
{
3
"age": 25,
4
"id": 2,
5
"name": "Tom"
6
}
In above example we can use: python -m json.tool
We use echo command to print our JSON and we pass it to python json tool.
If we want to save our pretty printed JSON to file we just need to redirect output to file.
In order to do that we can use below commnad as an example:
xxxxxxxxxx
1
echo '{"id": 2, "name": "Tom", "age": 25}' | python -m json.tool > pretty-json.txt
Practical example:
xxxxxxxxxx
1
[root]# echo '{"id": 2, "name": "Tom", "age": 25}' | python -m json.tool > pretty-json.txt
2
[root]# ls -al
3
total 4
4
drwxr-xr-x. 6 root root 91 Oct 30 13:23 .
5
dr-xr-xr-x. 19 root root 255 Oct 28 17:58 ..
6
-rw-r--r--. 1 root root 50 Oct 30 13:23 pretty-json.txt
7
[root]# cat pretty-json.txt
8
{
9
"age": 25,
10
"id": 2,
11
"name": "Tom"
12
}
xxxxxxxxxx
1
cat /home/my_json_file.json | python -m json.tool