Skip to content

Latest commit

 

History

History
18 lines (13 loc) · 483 Bytes

README.md

File metadata and controls

18 lines (13 loc) · 483 Bytes

JSON2CSV

This command-line tool converts nested JSON to CSV. In the case of 'parallel' nesting, i.e. {["abc", "def"], "foo"}, the tool generates the cross product. In this example, the tool would generate:

foo, abc
foo, def

I know of no other standard or convention for how else to translate such JSON.

Requirements:

Basic testing passed on:

  • Ubuntu 16.04
  • Windows 10