prettify json data from clipboard
Project description
jsoncf
prettify json string from clipboard
- Github repository: https://github.com/idlewith/jsoncf/
- Documentation https://idlewith.github.io/jsoncf/
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
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
jsoncf-0.0.5.tar.gz
(10.5 kB
view hashes)
Built Distribution
jsoncf-0.0.5-py3-none-any.whl
(10.6 kB
view hashes)