I’m new to json and pandas and want to output my data in the following schema, but I’m not sure how to add the leading ‘results’.
My dataframe:
JavaScript
x
5
1
Name Id Qty Value
2
thing1 123 10 12.5
3
thing2 456 20 15.4
4
thing3 789 40 84.2
5
My code:
JavaScript
1
2
1
json_output = df.reset_index().to_json(orient='record')
2
My Json output:
JavaScript
1
17
17
1
[{"id":456,
2
"name":"thing2",
3
"qty":20,
4
"value":15.4
5
},
6
"id":123,
7
"name":"thing1",
8
"qty":10,
9
"value":12.4
10
},
11
"id":789,
12
"name":"thing3",
13
"qty":40
14
"value":84.2
15
}
16
]
17
My Json schema that I want:
JavaScript
1
10
10
1
results:
2
3
id:
4
5
name:
6
7
qty:
8
9
value:
10
Advertisement
Answer
Try this:
JavaScript
1
13
13
1
import pandas as pd
2
import json
3
4
tmp = [('thing1', 123, 10, 12.5),
5
('thing2', 456, 20, 15.4),
6
('thing3', 789, 40, 84.2),
7
]
8
9
df = pd.DataFrame(tmp, columns=['Name', 'Id','Qty', 'Value'], )
10
df_dict = df.to_dict(orient='records')
11
final_dict = {'results': df_dict}
12
json_output = json.dumps(final_dict)
13