alan-turing-institute / CleverCSV

CleverCSV is a Python package for handling messy CSV files. It provides a drop-in replacement for the builtin CSV module with improved dialect detection, and comes with a handy command line application for working with CSV files.
https://clevercsv.readthedocs.io
MIT License
1.24k stars 70 forks source link

reading single csv line which containing multiple lines in content malfunctioned #125

Open Dobiichi-Origami opened 3 months ago

Dobiichi-Origami commented 3 months ago

For example I got a csv file which looks like:

header1,header2
"this
is
content","
another
content
"

apart from headers, the returned data from stream_table may looks like:

['"this', 'is']

This is caused by the implementation of stream_table, and It got be fixed

Dobiichi-Origami commented 3 months ago

Is there anyone taking a look? @GjjvdBurg