I have a .csv file with rows in the following format
1234, "Hello, Im text. "Thats a silly way to do it" is what the guy said.", 5678
The content of some of the entries contains double quotes and commas. However they are never next to each other. Some of the text entries are up to 524,288 characters long
pandas.read_csv('file.csv', dtype={'a': np.uint16, 'b': 'S524288', \
'c', np.uint16}, delimiter=',', quotechar='"', engine='python')
is giving me an error.
ParserError: field is larger than field limit (131072)
Any ideas?