Makes json all pretty-like.
Installation requires conscript
cs softprops/pj
Formatting piped data with curl (discarding stderr), use empty --
flag
curl 'http://api.tea.io/time' 2>/dev/null | pj --
{
"tea_time": true
}
Formatting json from file and writing to another.
pj -f path/to/in.json -o path/to/out.json
Formatting inline json
pj -j '{"oh":"la,la","datas":[1,2,3,4],"objects":{"waka":"waka"}}'
Getting help
pj -h
Install using ls
ls-install pj
Install by hand
libraryDependencies += "me.lessis" %% "pj" % "0.1.0"
val raw = """{"oh":"la,la","datas":[1,2,3,4],"objects":{"waka":"waka"}}"""
println(pj.Printer(raw))
{
"oh" : "la,la",
"datas" : [ 1, 2, 3, 4 ],
"objects" : {
"waka" : "waka"
}
}
Doug Tangren (softprops) 2012