Giter Site home page Giter Site logo

QST: about pandas HOT 2 OPEN

phan480 avatar phan480 commented on July 22, 2024
QST:

from pandas.

Comments (2)

RamMarthi9 avatar RamMarthi9 commented on July 22, 2024

Hi phan480,

Use this piece of code: I think this should help u. Ping me if this is working.
import pandas as pd

data = [{
"id": 1039835,
"status": "on_track",
"development_plan": {
"id": 23858,
"items": [{
"id": 176498,
"item_name": "itemname 1"
}, {
"id": 172450,
"item_name": "itemname 2"
}, {
"id": 172451,
"item_name": "itemname 3"
}
]
},
"user": {
"id": 714067
}
}
]

Extract data

records = []
for entry in data:
status = entry['status']
user_id = entry['user']['id']
development_plan_id = entry['development_plan']['id']
for item in entry['development_plan']['items']:
record = {
'id': item['id'],
'item_name': item['item_name'],
'development_plan_id': development_plan_id,
'status': status,
'user_id': user_id
}
records.append(record)

Create DataFrame

df = pd.DataFrame(records)

print(df)

I got the following result:
id item_name development_plan_id status user_id
0 176498 itemname 1 23858 on_track 714067
1 172450 itemname 2 23858 on_track 714067
2 172451 itemname 3 23858 on_track 714067

from pandas.

phan480 avatar phan480 commented on July 22, 2024

Thank you for your response, yes it works. But doesn't use the json_normalize functionality? I am using this function to parse a multitude of api's and their responses. I configure their record_path and meta data columns in configuration data.

I would like to avoid creating a unique way to parse every API.

from pandas.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.