Skip to content
Advertisement

Writing a List of Dictionaries to seperate JSONs

I do have dictionary, with each value as a list.

I want to write individual items to separate JSON files. For example

JavaScript

Now I want 3 jsons i.e data1.jsob, data2.json, data3.json in the following(approx) format.

data1.json

JavaScript

data2.json

JavaScript

and so on.

My current approach is

JavaScript

But this is wrong. Any helps appreciated.

Advertisement

Answer

You could use pandas to do the work for you. Read the dictionary into a dataframe, then iterate the rows of the dataframe to produce the json for each row:

JavaScript

Output (each line is in a separate file):

JavaScript
User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement