Skip to content

Latest commit

 

History

History
executable file
·
45 lines (31 loc) · 2.79 KB

README.md

File metadata and controls

executable file
·
45 lines (31 loc) · 2.79 KB

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/api/dissemination/statistics/1.0/data/tesem120" -o unr.jsonstat

jsonstat2csv unr.jsonstat unr.csv

Or using the stream interface:

curl "https://ec.europa.eu/eurostat/api/dissemination/statistics/1.0/data/tesem120" | jsonstat2csv > unr.csv -t

More in the Examples page.