chunk-json-lite 0.1.0

A little tool to split a json into multiple valid json array of a given max size
chunk-json-lite-0.1.0 is not a library.

chunk-json-lite

A little tool to split a json into multiple valid json array of a given max size

Example usage

$ cargo install chunk-json-lite
$ cat misc/movies-10.json | chunk-json-lite '10 MB'
$ cat chunk.0.json

You can also combine it with csv2json-lite and transform a csv into chunked json:

$ cargo install csv2json-lite chunk-json-lite
$ cat misc/movies-10.csv | csv2json-lite | chunk-json-lite '10 MB'
$ cat chunk.0.json