Unable to convert json to csv for a specific columns in pandas
I have a dataset in this form:
df.head(2)
Employee_Name EID Details
Lisa FG546HJ {"Summary": "Worked as a HR professional.", "Services_List": ["HR", "Marketing", "Hiring"],"On_payroll?": false}
Martin H5644HH {"Summary": "Worked as a UI Designer.", "Services_List": ["Frontend", "UI", "UX"],"On_payroll?": True}
As you can see, the 'Details' column is in json format...But I want the output to be in this form:
Employee_Name EID Summary...