jsoncf
prettify json string from clipboard
Install
pip install jsoncf
Usage
the json string below
{"employees":[ {"name":"Shyam", "email":"shyamjaiswal@gmail.com"}, {"name":"Bob", "email":"bob32@gmail.com"}, {"name":"Jai", "email":"jai87@gmail.com"} ]}
you can select the whole json string, then type Ctrl(Cmd) + C
to copy,
then just type the command
jsoncf
OR
you can use it as args
jsoncf '{"employees":[ {"name":"Shyam", "email":"shyamjaiswal@gmail.com"}, {"name":"Bob", "email":"bob32@gmail.com"}, {"name":"Jai", "email":"jai87@gmail.com"} ]} '
the output below
{
"employees": [
{
"name": "Shyam",
"email": "shyamjaiswal@gmail.com"
},
{
"name": "Bob",
"email": "bob32@gmail.com"
},
{
"name": "Jai",
"email": "jai87@gmail.com"
}
]
}
and jsoncf
also write json data to data.json
in current path