You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

jsonflattifier

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

jsonflattifier

Converts a JSON Document with nested objects and their parameters to the JSON Document with Flat Denormalised Data.

1.1.6
Source
pipPyPI
Maintainers
1

jsonflattifier

Converts a JSON Document with nested objects and their parameters to the JSON Document with Flat Denormalised Data.

Installation

> pip install jsonflattifier

Input

{
  "name": "John",
  "has": [
    "apple",
    "peach"
  ]
}

Get flat JSON

> python3 -m jsonflattifier flattify '{"name":"John","has":["apple","peach"]}' --json --jsonpath-keys --no-table
[
  {
    "$['name']": "John",
    "$['has'][0]": "apple"
  },
  {
    "$['name']": "John",
    "$['has'][1]": "peach"
  }
]

Get CSV

> python3 -m jsonflattifier flattify '{"name":"John","has":["apple","peach"]}' --csv --no-table
['name'],['has']
John,apple
John,peach

Print Table

> python3 -m jsonflattifier flattify '{"name":"John","has":["apple","peach"]}'
['name']['has']
Johnapple
Johnpeach

2 rows in set

More Examples

https://gitlab.com/v.grigoryevskiy/json-flattifier/-/tree/master/tests/data

Keywords

json csv flat flattify flatten table convert denormalise combinations

FAQs

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts