json2csv icon indicating copy to clipboard operation
json2csv copied to clipboard

command line tool to convert json to csv

Results 13 json2csv issues
Sort by recently updated
recently updated
newest added

Hi. I doubt you actually want to merge this PR, so this is more of an FYI. My goal in working with `ios_system` and `a-shell` has been to get this...

Trying to convert JSON which is an array rather than a single object and I get back the following error: ERROR Decoding JSON at line 1: json: cannot unmarshal array...

I have json file that looks like below. json2csv works if I make this each entry a single line. Is this format it fails. I there a way for json2csv...

Trying to test this and I am unable to get anything to output into my csv file through powershell. I created a file with the JSON data from the README...

``` [ [1508834700000,"5688.5","5735.4","5676.51","5699.4","9.9216"],[1508835600000,"5699.4","5727","5699.4","5727","5.0476"],[1508836500000,"5727","5733.6","5644.31","5693.94","66.833"], ] ``` like this.... how to convert? thx...

Thanks for your fantastically useful json2csv script - I've been using it to parse data from OpenLibrary dumps. It's working very well, even though the OL data is very inconsistently...

attempting to convert a json using the instructions on the readme, I get ` error: unknown option `-k'` This occurs even when using the exact data and command written on...

The following doesn't work ``` echo '{"FOO": {"BAR.BAR": "BURGER"}}' | json2csv -k FOO.'BAR.BAR' #or FOO.BAR.BAR ```

It'd be nice to be able to do something like `json2csv -k *` where the `*` indicates all fields from the json object will be included in the output.

This may be a bug/feature of the json library this tool uses, but my CSV had a large number in one of the columns, and it was evidently parsed as...