#json #convert-json #yaml #json-xml #json-format #xml-data #xml

bin+lib convert2json

CLI utilities to convert CSV, INI, TOML, XML & YAML into JSON and for use with jaq or jq

29 releases (7 breaking)

new 0.8.3 Apr 21, 2024
0.8.2 Mar 30, 2024
0.7.2 Feb 25, 2024
0.5.5 Dec 28, 2023
0.4.4 Jul 31, 2023

#360 in Encoding

Download history 6/week @ 2024-01-12 15/week @ 2024-01-19 1/week @ 2024-01-26 2/week @ 2024-02-02 6/week @ 2024-02-16 214/week @ 2024-02-23 28/week @ 2024-03-01 33/week @ 2024-03-08 14/week @ 2024-03-15 151/week @ 2024-03-22 158/week @ 2024-03-29 18/week @ 2024-04-05 140/week @ 2024-04-19

318 downloads per month

MIT license

33KB
538 lines

convert2json

Utilities for use on the command line, to convert CSV, INI, TOML, XML & YAML to JSON. For each supported format there is a tool for use in a pipe as well as a wrapper which passes the converted input or files in the arguments to jaq or jq, for further querying and processing.

Overview

Goals:

  • provide light-weight converters to JSON
  • provide jaq and jq wrappers
  • add support for additional formats having maintained Serde implementations

Non-Goals:

  • converting JSON into other data formats, consider jyt
  • replicating jq, jaq or jq must be installed to use the jq wrappers

Usage examples

# convert yaml to json
$ echo foo: bar | yaml2json
{"foo":"bar"}

# query a value from a toml file
$ tq -r .package.description Cargo.toml
CLI utilities to convert CSV, TOML, XML & YAML into JSON on standard output or into jaq or jq.

# query for environment variables that contain the current users username, using ini parser
$ printenv | iq --compact-output '.USER as $user | . | with_entries(select(.value | contains($user))) | keys'
["HOME","LOGNAME","OLDPWD","PWD","USER","USERNAME"]

# csv2json & cq recognize 4 additional arguments
$ csv2json --help
Usage: csv2json [-d <delimiter>] [-q <quote>] [-E <escape>] [--no-trim] [files...]

Reads CSV from files or standard input and converts this to JSON, emitted on standard output. Any errors are reported to standard error and result in a non-zero exit code.

Options:
  -d, --delimiter   field delimiter to use when parsing CSV, defaults to: ,
                    (comma)
  -q, --quote       quote character to use when parsing CSV, defaults to: "
                    (double quote)
  -E, --escape      escape character to use when parsing CSV, to escape quote
                    characters within a field. By default, quotes get escaped by
                    doubling them.
  --no-trim         do not trim headers & fields. By default, both get trimmed
                    of starting or trailing whitespace characters.
  -h, --help        display usage information

Alternatives

Installation

Packages are provided (statically linked) for Debian & Ubuntu, as wells as RPM based Linux distributions and for Alpine Linux.

For Ubuntu, MacOS (universal binaries for x86_64 & arm64) and Windows, archives with pre-built (dynamically linked) binaries are provided, for manual installation.

You can find these packages and archives in the releases.

If you have Rust and Cargo installed, you can build and update these tools using cargo install convert2json. See the feature matrix below, if you only need a subset of the utilities.

Feature Matrix

You may not want to install all of the utilities or only a particular one. Each utility can be selected by itself or via group features. If no features are selected, all utilities get installed.

Matrix of all selectable features:

to_json jq
csv csv2json cq
ini ini2json iq
toml toml2json tq
xml xml2json xq
yaml yaml2json yq

Examples:

# install only yq & tq:
cargo install convert2json --no-default-features --features yq,tq
# install all the xml related tools:
cargo install convert2json --no-default-features --features xml

Dependencies

~2–3MB
~55K SLoC