jsonstat-conv

JSON-stat Command Line Conversion Tools

Usage no npm install needed!

<script type="module">
  import jsonstatConv from 'https://cdn.skypack.dev/jsonstat-conv';
</script>

README

JSON-stat Command Line Conversion Tools

The JSON-stat Command Line Conversion Tools contain command line tools for converting to and from JSON-stat. They support different JSON flavors, CSV (including CSV-stat) and SDMX-JSON. They are built upon the JSON-stat Javascript Toolkit and the JSON-stat Javascript Utilities Suite.

Installation

npm install -g jsonstat-conv

More in the Installation page.

Available commands

Check the API Reference page for more.

Example

Get unemployment rate time series by country from Eurostat and convert it to CSV.

curl "https://ec.europa.eu/eurostat/wdds/rest/data/v2.1/json/en/tesem120?precision=1" -o unr.jsonstat

jsonstat2csv unr.jsonstat unr.csv

Or using the stream interface:

curl "https://ec.europa.eu/eurostat/wdds/rest/data/v2.1/json/en/tesem120?precision=1" | jsonstat2csv > unr.csv -t

More in the Examples page.