Created
May 26, 2019 22:31
-
-
Save rnrbarbosa/e0db1cd02cdfdb8a44e88a392835fb71 to your computer and use it in GitHub Desktop.
FLATTEN JSON
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def flatten_json(nested_json): | |
""" | |
Flatten json object with nested keys into a single level. | |
Args: | |
nested_json: A nested json object. | |
Returns: | |
The flattened json object if successful, None otherwise. | |
""" | |
out = {} | |
def flatten(x, name=''): | |
if type(x) is dict: | |
for a in x: | |
flatten(x[a], name + a + '_') | |
elif type(x) is list: | |
i = 0 | |
for a in x: | |
flatten(a, name + str(i) + '_') | |
i += 1 | |
else: | |
out[name[:-1]] = x | |
flatten(nested_json) | |
return out |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment