2017 © Pedro Peláez
 

library json-parser

Keboola JSON to CSV parser

image

keboola/json-parser

Keboola JSON to CSV parser

  • Thursday, December 21, 2017
  • by kachnitel
  • Repository
  • 7 Watchers
  • 3 Stars
  • 6,870 Installations
  • PHP
  • 2 Dependents
  • 0 Suggesters
  • 4 Forks
  • 1 Open issues
  • 50 Versions
  • 2 % Grown

The README.md

JSON Parser

Description

Parses JSON strings into CSV files. Creates multiple tables from a single JSON. Uses Keboola\CsvFile for results. The root of the JSON must be an array. JSON parser is part of Generic Extractor (see also end-user documentation)., (*1)

Usage

use Keboola\Json\Parser;
$parser = new Parser(new Analyzer(new NullLogger(), new Structure()));
$file = file_get_contents("some/data.json");
$json = json_decode($file);

$parser->process($json);

$results = $parser->getCsvFiles(); // array of CsvFile objects

\Keboola\Json\Analyzer

Analyzes JSON data for JSON parser., (*2)

__construct(\Psr\Log\LoggerInterface $logger, \Keboola\Json\Structure $structure, $nestedArraysAsJson, $strict)

  • $logger - a logger, use NullLogger if no logger is used.
  • $structure - a representation of JSON structure .
  • $nestedArraysAsJson - if true, then nested arrays will be encoded as JSON strings. If false (default), the conversion will fail.
  • $strict - if true, then JSON node data types will be checked more strictly (int, string, ...).

\Keboola\Json\Parser

Parses JSON data into CSV files., (*3)

__construct($analyzer, $definitions = [])

  • $definitions - optional array with results from previous process.
  • $analyzer - instance of analyzer class.

process($data, $type, $parentId)

  • $data - array of objects retrieved from JSON data.
  • $type - is used for naming the resulting table(s).
  • $parentId - either a string, which will be saved in a JSON_parentId column, or an array with "column_name" => "value", which will name the column(s) by array key provided.
  • If the data is analyzed, it is stored in Cache and NOT PARSED until the getCsvFiles() method is called.

getCsvFiles()

  • returns a list of \Keboola\CsvTable\Table objects with parse results

Parse characteristics

The analyze function loops through each row of an array (generally an array of results) and passes the row into analyzeRow() method. If the row only contains a scalar, it's stored in a "data" column. If the row is an object, each of the object's variables will be used as a column name, and its values are analyzed: - if it is a scalar, it'll be saved as a value of that column. - if it is an array, it'll be passed to analyze() to create a new table, linked by a generated JSON_parentId column - if it is another object, it'll be parsed recursively to analyzeRow(), with its variable names prepended by current objects' name, e.g.:, (*4)

"parent": {
    "child" : "value1"
}

will result in a parent_child column with a string type of "value1"., (*5)

The Versions

21/12 2017

dev-master

9999999-dev

Keboola JSON to CSV parser

  Sources   Download

MIT

The Requires

 

The Development Requires

by Ondrej Vana
by Avatar Keboola

csv parser json converter json2csv

21/12 2017

2.1.0

2.1.0.0

Keboola JSON to CSV parser

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar Keboola

csv parser json converter json2csv

08/09 2017

2.0.1

2.0.1.0

Keboola JSON to CSV parser

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar Keboola

csv parser json converter json2csv

07/09 2017

2.0.0

2.0.0.0

Keboola JSON to CSV parser

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar Keboola

csv parser json converter json2csv

07/09 2017

dev-column-conflicts

dev-column-conflicts

Keboola JSON to CSV parser

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar Keboola

csv parser json converter json2csv

16/06 2017

1.1.0

1.1.0.0

Keboola JSON to CSV parser

  Sources   Download

MIT

The Requires

 

The Development Requires

by Ondrej Vana

csv parser json converter json2csv

06/06 2017

1.0.13

1.0.13.0

Keboola JSON to CSV parser

  Sources   Download

MIT

The Requires

 

The Development Requires

by Ondrej Vana

csv parser json converter json2csv

06/06 2016

1.0.12

1.0.12.0

Keboola JSON to CSV parser

  Sources   Download

MIT

The Requires

 

The Development Requires

by Ondrej Vana

csv parser json converter json2csv

17/03 2016

1.0.11

1.0.11.0

Keboola JSON to CSV parser

  Sources   Download

MIT

The Requires

 

The Development Requires

by Ondrej Vana

csv parser json converter json2csv

24/01 2016

1.0.10

1.0.10.0

Keboola JSON to CSV parser

  Sources   Download

MIT

The Requires

 

The Development Requires

by Ondrej Vana

csv parser json converter json2csv

24/01 2016

1.0.9

1.0.9.0

Keboola JSON to CSV parser

  Sources   Download

MIT

The Requires

 

The Development Requires

by Ondrej Vana

csv parser json converter json2csv

11/12 2015

1.0.8

1.0.8.0

Keboola JSON to CSV parser

  Sources   Download

MIT

The Requires

 

The Development Requires

by Ondrej Vana

csv parser json converter json2csv

27/10 2015

1.0.7

1.0.7.0

Keboola JSON to CSV parser

  Sources   Download

MIT

The Requires

 

The Development Requires

by Ondrej Vana

csv parser json converter json2csv

22/10 2015

1.0.6

1.0.6.0

Keboola JSON to CSV parser

  Sources   Download

MIT

The Requires

 

The Development Requires

by Ondrej Vana

csv parser json converter json2csv

10/10 2015

1.0.5

1.0.5.0

Keboola JSON to CSV parser

  Sources   Download

MIT

The Requires

 

The Development Requires

by Ondrej Vana

csv parser json converter json2csv

03/10 2015

1.0.4

1.0.4.0

Keboola JSON to CSV parser

  Sources   Download

MIT

The Requires

 

The Development Requires

by Ondrej Vana

csv parser json converter json2csv

28/09 2015

1.0.3

1.0.3.0

Keboola JSON to CSV parser

  Sources   Download

MIT

The Requires

 

The Development Requires

by Ondrej Vana

csv parser json converter json2csv

28/09 2015

1.0.2

1.0.2.0

Keboola JSON to CSV parser

  Sources   Download

MIT

The Requires

 

The Development Requires

by Ondrej Vana

csv parser json converter json2csv

27/09 2015

1.0.1

1.0.1.0

Keboola JSON to CSV parser

  Sources   Download

MIT

The Requires

 

The Development Requires

by Ondrej Vana

csv parser json converter json2csv

27/09 2015

1.0.0

1.0.0.0

Keboola JSON to CSV parser

  Sources   Download

MIT

The Requires

 

The Development Requires

by Ondrej Vana

csv parser json converter json2csv

26/08 2015

0.2.4

0.2.4.0

Keboola JSON to CSV parser

  Sources   Download

MIT

The Requires

 

The Development Requires

by Ondrej Vana

csv parser json converter json2csv

25/08 2015

0.2.3

0.2.3.0

Keboola JSON to CSV parser

  Sources   Download

MIT

The Requires

 

The Development Requires

by Ondrej Vana

csv parser json converter json2csv

25/08 2015

0.2.2

0.2.2.0

Keboola JSON to CSV parser

  Sources   Download

MIT

The Requires

 

The Development Requires

by Ondrej Vana

csv parser json converter json2csv

23/03 2015

0.2.1

0.2.1.0

Keboola JSON to CSV parser

  Sources   Download

MIT

The Requires

 

The Development Requires

by Ondrej Vana

csv parser json converter json2csv

21/03 2015

0.2.0

0.2.0.0

Keboola JSON to CSV parser

  Sources   Download

MIT

The Requires

 

The Development Requires

by Ondrej Vana

csv parser json converter json2csv

19/03 2015

0.1.24

0.1.24.0

Keboola JSON to CSV parser

  Sources   Download

MIT

The Requires

 

The Development Requires

by Ondrej Vana

csv parser json converter json2csv

16/02 2015

0.1.23

0.1.23.0

Keboola JSON to CSV parser

  Sources   Download

MIT

The Requires

 

The Development Requires

by Ondrej Vana

csv parser json converter json2csv

12/12 2014

0.1.22

0.1.22.0

Keboola JSON to CSV parser

  Sources   Download

MIT

The Requires

 

The Development Requires

by Ondrej Vana

csv parser json converter json2csv

12/12 2014

0.1.21

0.1.21.0

Keboola JSON to CSV parser

  Sources   Download

MIT

The Requires

 

The Development Requires

by Ondrej Vana

csv parser json converter json2csv

12/12 2014

0.1.20

0.1.20.0

Keboola JSON to CSV parser

  Sources   Download

MIT

The Requires

 

The Development Requires

by Ondrej Vana

csv parser json converter json2csv

11/12 2014

0.1.19

0.1.19.0

Keboola JSON to CSV parser

  Sources   Download

MIT

The Requires

 

The Development Requires

by Ondrej Vana

csv parser json converter json2csv

10/12 2014

0.1.18

0.1.18.0

Keboola JSON to CSV parser

  Sources   Download

MIT

The Requires

 

The Development Requires

by Ondrej Vana

csv parser json converter json2csv

10/12 2014

0.1.17

0.1.17.0

Keboola JSON to CSV parser

  Sources   Download

MIT

The Requires

 

The Development Requires

by Ondrej Vana

csv parser json converter json2csv

10/12 2014

0.1.16

0.1.16.0

Keboola JSON to CSV parser

  Sources   Download

MIT

The Requires

 

The Development Requires

by Ondrej Vana

csv parser json converter json2csv

10/12 2014

0.1.15

0.1.15.0

Keboola JSON to CSV parser

  Sources   Download

MIT

The Requires

 

The Development Requires

by Ondrej Vana

csv parser json converter json2csv

09/12 2014

0.1.14

0.1.14.0

Keboola JSON to CSV parser

  Sources   Download

MIT

The Requires

 

The Development Requires

by Ondrej Vana

csv parser json converter json2csv

08/12 2014

0.1.13

0.1.13.0

Keboola JSON to CSV parser

  Sources   Download

MIT

The Requires

 

The Development Requires

by Ondrej Vana

csv parser json converter json2csv

23/11 2014

0.1.12

0.1.12.0

Keboola JSON to CSV parser

  Sources   Download

MIT

The Requires

 

The Development Requires

by Ondrej Vana

csv parser json converter json2csv

22/11 2014

0.1.11

0.1.11.0

Keboola JSON to CSV parser

  Sources   Download

MIT

The Requires

 

The Development Requires

by Ondrej Vana

csv parser json converter json2csv

21/11 2014

0.1.10

0.1.10.0

Keboola JSON to CSV parser

  Sources   Download

MIT

The Requires

 

The Development Requires

by Ondrej Vana

csv parser json converter json2csv

20/11 2014

0.1.9

0.1.9.0

Keboola JSON to CSV parser

  Sources   Download

MIT

The Requires

 

The Development Requires

by Ondrej Vana

csv parser json converter json2csv

09/11 2014

0.1.8

0.1.8.0

Keboola JSON to CSV parser

  Sources   Download

MIT

The Requires

 

The Development Requires

by Ondrej Vana

csv parser json converter json2csv

04/11 2014

0.1.7

0.1.7.0

Keboola JSON to CSV parser

  Sources   Download

MIT

The Requires

 

The Development Requires

by Ondrej Vana

csv parser json converter json2csv

03/11 2014

0.1.6

0.1.6.0

Keboola JSON to CSV parser

  Sources   Download

MIT

The Requires

 

The Development Requires

by Ondrej Vana

csv parser json converter json2csv

30/10 2014

0.1.5

0.1.5.0

Keboola JSON to CSV parser

  Sources   Download

MIT

The Requires

 

The Development Requires

by Ondrej Vana

csv parser json converter json2csv

22/10 2014

0.1.4

0.1.4.0

Keboola JSON to CSV parser

  Sources   Download

MIT

The Requires

 

The Development Requires

by Ondrej Vana

csv parser json converter json2csv

21/10 2014

0.1.3

0.1.3.0

Keboola JSON to CSV parser

  Sources   Download

MIT

The Requires

 

The Development Requires

by Ondrej Vana

csv parser json converter json2csv

16/10 2014

0.1.2

0.1.2.0

Keboola JSON to CSV parser

  Sources   Download

MIT

The Requires

 

The Development Requires

by Ondrej Vana

csv parser json converter json2csv

08/10 2014

0.1.1

0.1.1.0

Keboola JSON to CSV parser

  Sources   Download

MIT

The Requires

 

The Development Requires

by Ondrej Vana

csv parser json converter json2csv

04/10 2014

0.1.0

0.1.0.0

Keboola JSON to CSV parser

  Sources   Download

MIT

The Requires

 

The Development Requires

by Ondrej Vana

csv parser json converter json2csv