I would like to import 10K csv files generated by 3rd party app with UCS-2 LE coding. I wouldn't like to use csv reader as in example Python UTF-16 as there are so many files.
Below you can find my code, where I'm trying to read just one. I'm using Python 3.4 and Pandas 0.18.1
Sample file to download.
MWE:
import pandas as pd
df = pd.read_csv('1.csv',
encoding="mbcs",
skip_blank_lines=True,
error_bad_lines=False,
decimal=',',
sep='\s+')
I got an error:
CParserError: Error tokenizing data. C error: EOF inside string starting at line 17