I'm trying to import a csv file with a two nested JSON Obejcts inside using Jupiter Notebook.
I'm getting this error.
ParserError: Error tokenizing data. C error: Expected 29 fields in line 3, saw 35
The problem is that Pandas doesn't recognise the JSON Object and just uses the CSV delimiters which is a comma.
Here's a sample row of the CSV file:
309,DVD10_Welt.mxf,16947519284,00:37:32:24,0_yd3ugljx,"{"Type":"Source","Content-Type":"Beitrag"}",97,"Welt",NULL,NULL,NULL,"{"ContentType":"Beitrag","Description":"Sie beobachten jeden.","Keywords":["wissensthek","zukunft","\u00dcberwachung","roboter","technik","internet","dvd","wissen"],"ProductionDate":"2013-07-10T00:30:06.000Z","TitleIntern":null}"
This is my Line in Jupyter:
df = pd.read_csv(csv_file)
df
Can someone pls give me a hint?
Thanks Manuel