简体   繁体   中英

DataFrame to nested JSON with Python?

I am trying to extract data from SQL and convert it into the JSON file.

I also tried other "techniques" mentioned on the various websites but without any success.

So basically I'm "stuck" after below statement

j = (df.groupby(['SectionCode'])
     .apply(lambda x: x[['Barcode', 'BrandCode', 'PurchaseRate', 'SalesRate', 'unit','Item']].to_dict('r'))
     .reset_index()
     .rename(columns={0: 'Products'})
     .to_json(r'D:\DataToFirbaseWithPython\Export_DataFrame.json'))

print(j)

need this json format.

"SectionsWithItem": { #Root_Nose_In_Firebase
  "0001": { #SectionCode
    "Products": {
            "018123": { #Barcode
        "Barcode": "018123",
                "BrandCode": "1004",
                "PurchaseRate": 105.0,
                "SalesRate": 125.0,
                "Units": "Piece",
                "name": "Shahi Delux Mouth Freshener"
            },
            "0039217": { #Barcode
        "Barcode": "0039217",
                "BrandCode": "0814",
                "PurchaseRate": 140.0,
                "SalesRate": 160.0,
                "Units": "Piece",
                "name": "Maizban Gota Pan Masala Medium Jar"
            }
        }
    },
    "0002": { #SectionCode
    "Products": {
            "03905": { #Barcode
        "Barcode": "03905",
                "BrandCode": "0189",
                "PurchaseRate": 15.4,
                "SalesRate": 17.0,
                "Units": "Piece",
                "name": "Peek Freans Rio Chocolate Half Roll"
            },
            "0003910": { #Barcode
        "Barcode": "0003910",
                "BrandCode": "0189",
                "PurchaseRate": 110.32,
                "SalesRate": 120.0,
                "Units": "Piece",
                "name": "Peek Freans Gluco Ticky Pack Box"
            }
        }
    }
}

My DataFrame

Barcode,Item,SalesRate,PurchaseRate,unit,BrandCode,SectionCode
0005575,Broom Soft A Quality,100.0,80.0,,2037,0045
0005850,Safa Tomato Paste 800g,340.0,275.0,800g,1004,0009
0005921,Dettol Liquid 1Ltr,800.0,719.99,1Ltr,0475,0045

Grouping by the barcode as well should help with indexing like the desired output.

import pandas as pd
import json

df = pd.read_csv('stac1 - Sheet1.csv', dtype=str) #made dataframe with provided data

j = (df.groupby(['SectionCode', 'Barcode'])
     .apply(lambda x: x[['Barcode', 'BrandCode', 'PurchaseRate', 'SalesRate','unit','Item']].to_dict('r'))
     .reset_index()
     .rename(columns={0: 'Products'})
     .to_json(r'Export_DataFrame.json'))

with open('Export_DataFrame.json') as f:
    data = json.load(f)

print(data)

Hopefully this helps get you in the right direction!

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM