json2csv 0.1.0

A tool to convert JSON to CSV
1
2
3
4
5
6
set -x
time json2csv -i sample.json > /dev/null
time json2csv -i sample.json --flatten > /dev/null
time json2csv -i sample.json --unwind "tags" > /dev/null
time json2csv -i sample.json --unwind "tags" --flatten > /dev/null
time json2csv -i sample.json --fields "guid" > /dev/null