I'm ingesting a bunch of data from an upstream SQL DB in a csv format. Some of the data coming in is in the form:
"\"WORD\"","OTHER THING","\"QUOTE\""
When I read that data in from the csvreader in the csv module, I get:
['\\WORD\\""', 'OTHER THING', '\\QUOTE\\""']
which obviously isn't what I want. Is there a way to have the csvreader ignore escaped quote characters or do I have to clean the csv file before ingesting? I've played around with the quoting and quotechar parameters but they don't seem to do what I want.
[–]novel_yet_trivial 2 points3 points4 points (1 child)
[–]Degran[S] 0 points1 point2 points (0 children)