Is there a way to extract json string to multiple rows as shown below
Example,
This is the dataframe I have with json string
Col1 Col2
1 [{'name': 'TypeScript1', 'size': 10}, {'name': 'TypeScript2', 'size': 20}]
2 [{'name': 'TypeScript3', 'size': 30}, {'name': 'TypeScript4', 'size': 40}]
Is there a way to convert to below with reference key(Col1)
Col1 name size
1 TypeScript1 10
1 TypeScript2 20
2 TypeScript3 30
2 TypeScript4 40