csv2jsonl

csv2jsonl (c2j) converts CSV to JSON Lines.

By default csv2json will stream and perform type interferance without information loss. Number strings are only converted to numbers if they are equal to the JSON string (not contain e, E or a long floating point value). If a UTF-8 or UTF-16 BOM is detected, then an appropriate encoding is automatically detected and transcoding is performed. In all other cases, the source of the underlying reader is passed through unchanged as if it were UTF-8.

Usage

bash $ c2j [OPTIONS] [FILE]

``` ARGS: The CSV file to operate on. If omitted, will accept input as piped data via STDIN

OPTIONS: -d, --delimiter Delimiting character (single byte) of the CSV [default: ,] -t, --tabs Use a tab delimiter (overrides delimiter option) -i, --indent Indent the output JSON this many spaces. Disabled by default -I, --no-inference Disable type inference when parsing CSV. Do not convert empty strings to null and number string to numbers -h, --help Print help information -V, --version Print version information ```

ToDo

Thanks to

I started looking for a fast rust version of csvjson of the csvkit. I initially found csvtojson, streaming but not properly reading csv. And csv2json which was using csv, but no stream. After altering the package a lot, I thought it would be best to create a new one instead of a fork.