amancevice / flatsplode

Flatten/Explode JSON objects
MIT License
17 stars 7 forks source link

Feature request: Array index support. #1

Open honne opened 4 years ago

honne commented 4 years ago

Example: Input: {'a': 'A', 'fizz': [{'key': 'buzz'}, {'key': 'jazz'}]} After flattening [ {'a': 'A', 'fizz.idx': 0, 'fizz.key': 'buzz'}, {'a': 'A', 'fizz.idx': 1, 'fizz.key': 'jazz'}]