Flattening nested JSON with LIST values in it using Pandas

352 Views Asked by At

I am trying to flatten this nested JSON file:

{
    "1": {
        "name": "Treez #0001",
        "description": "Treez #0001",
        "image": "",
        "atributes": [
            {
                "trait_type": "Apple Count",
                "value": "3"
            },
            {
                "trait_type": "Body Type",
                "value": "demeter"
            },
            {
                "trait_type": "Background",
                "value": "RiverLand"
            },
            {
                "trait_type": "Body Texture",
                "value": "TMac"
            },
            {
                "trait_type": "Stone Type",
                "value": "TeenSpirit"
            },
            {
                "trait_type": "Leaf Texture",
                "value": "Parisian"
            },
            {
                "trait_type": "Apple Texture",
                "value": "Pastel"
            },
            {
                "trait_type": "Animal",
                "value": "Monkey"
            },
            {
                "trait_type": "Rarity Score ",
                "value": "1271"
            }
        ]
    },
    "2": {
        "name": "Treez #0002",
        "description": "Treez #0002",
        "image": "",
        "atributes": [
            {
                "trait_type": "Apple Count",
                "value": "3"
            },
            {
                "trait_type": "Body Type",
                "value": "Naked"
            },
            {
                "trait_type": "Background",
                "value": "Heaven"
            },
            {
                "trait_type": "Body Texture",
                "value": "WcWall"
            },
            {
                "trait_type": "Stone Type",
                "value": "Fairy"
            },
            {
                "trait_type": "Leaf Texture",
                "value": "Haze"
            },
            {
                "trait_type": "Apple Texture",
                "value": "SummerTime"
            },
            {
                "trait_type": "Rarity Score ",
                "value": "767"
            }
        ]
    },
    "3": {
        "name": "Treez #0003",
        "description": "Treez #0003",
        "image": "",
        "atributes": [
            {
                "trait_type": "Apple Count",
                "value": "1"
            },
            {
                "trait_type": "Body Type",
                "value": "Naked"
            },
            {
                "trait_type": "Background",
                "value": "FutureCaveMens"
            },
            {
                "trait_type": "Body Texture",
                "value": "CottonCandy"
            },
            {
                "trait_type": "Stone Type",
                "value": "TeenSpirit"
            },
            {
                "trait_type": "Leaf Texture",
                "value": "Energy"
            },
            {
                "trait_type": "Apple Texture",
                "value": "Slushy"
            },
            {
                "trait_type": "Rarity Score ",
                "value": "517"
            }
        ]
    },
    "4": {
        "name": "Treez #0004",
        "description": "Treez #0004",
        "image": "",
        "atributes": [
            {
                "trait_type": "Apple Count",
                "value": "1"
            },
            {
                "trait_type": "Body Type",
                "value": "Naked"
            },
            {
                "trait_type": "Background",
                "value": "ColorfulSkies"
            },
            {
                "trait_type": "Body Texture",
                "value": "CottonCandy"
            },
            {
                "trait_type": "Stone Type",
                "value": "Poison"
            },
            {
                "trait_type": "Leaf Texture",
                "value": "LemonHaze"
            },
            {
                "trait_type": "Apple Texture",
                "value": "Wilderness"
            },
            {
                "trait_type": "Rarity Score ",
                "value": "502"
            }
        ]
    }
}

Pandas.io.json.read_json return without parsing the list:

enter image description here

and

when I try json_normalize:

f = open("file.t", "r")
data = json.load(f)
pd.json_normalize(data)

it looks like this:

enter image description here

and I could't find any parameters to work.

My expected output is columns = ['name','Apple Count', 'Body Type', 'Background', 'Body Texture', 'Stone Type', 'Leaf Texture', 'Apple Texture', 'Animal','Rarity Score']

1

There are 1 best solutions below

0
On

as @sammywemmy suggested,

I first did;

pd.json_normalize(data['1'], 'atributes', ['name'])

gave me this:

enter image description here

then pivoted my table by:

data.pivot(index= 'name', columns='trait_type', values='value')

and this is the result as expected;

enter image description here