The csv module in Python doesn't work properly when there's UTF-8/Unicode involved. I have found in Python documentation (http://docs.python.org/library/csv.html) and other webpages snippets that work for specific cases, but you have to understand well what encoding you are handling and use the appropiated snippet.

Is there any universal library or snippet for Python (2.6) that writes/reads strings or unicode strings from .csv files that just works? Or is this Python (2.6) related and there's no simple solution?

link|improve this question

75% accept rate
feedback

6 Answers

There is the usage of Unicode example already in that doc, why still need to find another one or re-invent the wheel?

import csv

def unicode_csv_reader(unicode_csv_data, dialect=csv.excel, **kwargs):
    # csv.py doesn't do Unicode; encode temporarily as UTF-8:
    csv_reader = csv.reader(utf_8_encoder(unicode_csv_data),
                            dialect=dialect, **kwargs)
    for row in csv_reader:
        # decode UTF-8 back to Unicode, cell by cell:
        yield [unicode(cell, 'utf-8') for cell in row]

def utf_8_encoder(unicode_csv_data):
    for line in unicode_csv_data:
        yield line.encode('utf-8')
link|improve this answer
5  
Doesn't work for me on linux: r = unicode_csv_reader(file('/tmp/csv-unicode.csv').read().split('\n')) ; r.next() . Gives: UnicodeDecodeError: 'ascii' codec can't decode byte 0xf8 in position 14: ordinal not in range(128) – Parand Feb 16 '11 at 7:13
1  
Does not work for me either. Same error. – Maxim Yegorushkin May 31 '11 at 11:32
Same here, Maxmin's answer below works though : ) – bjunix Apr 4 at 8:00
feedback

The example code to read Unicode given at http://docs.python.org/library/csv.html#examples look to be obsolete, as it doesn't work with Python 2.6 and 2.7.

Here follows UnicodeDictReader that works with utf-8 and may be with other encodings, but I only tested it on utf-8 inputs.

The idea in short is to decode Unicode only after the csv row has been split into fields by csv.reader.

class UnicodeCsvReader(object):
    def __init__(self, f, encoding="utf-8", **kwargs):
        self.csv_reader = csv.reader(f, **kwargs)
        self.encoding = encoding

    def __iter__(self):
        return self

    def next(self):
        # read and split the csv row into fields
        row = self.csv_reader.next() 
        # now decode
        return [unicode(cell, self.encoding) for cell in row]

    @property
    def line_num(self):
        return self.csv_reader.line_num

class UnicodeDictReader(csv.DictReader):
    def __init__(self, f, encoding="utf-8", fieldnames=None, **kwds):
        csv.DictReader.__init__(self, f, fieldnames=fieldnames, **kwds)
        self.reader = UnicodeCsvReader(f, encoding=encoding, **kwds)

Usage:

csv_lines = (
    "абв,123",
    "где,456",
)

for row in UnicodeCsvReader(csv_lines):
    for col in row:
        print(type(col), col)

Output:

$ python test.py
<type 'unicode'> абв
<type 'unicode'> 123
<type 'unicode'> где
<type 'unicode'> 456
link|improve this answer
Would you be able to provide an example of how these classes would be used please? – hellsgate Sep 11 '11 at 12:04
Update the answer with a usage example. – Maxim Yegorushkin Sep 11 '11 at 19:46
Thank you, much appreciated. – hellsgate Sep 12 '11 at 8:22
1  
This should be the accepted answer ; ) – bjunix Apr 4 at 8:00
feedback

The module provided here, looks like a cool, simple, drop-in replacement for the csv module that allows you to work with utf-8 csv.

import ucsv as csv
with open('some.csv', 'rb') as f:
    reader = csv.reader(f)
    for row in reader:
        print row
link|improve this answer
worked great for me on another project, thanks a lot! – vasek1 Feb 19 at 23:34
Thanks for this, it also includes the super useful DictReader interface, which allows you to treat each row of the CSV file as a dictionary where the keys are taken from the fieldnames in the first row: – pat Apr 14 at 1:17
feedback

The wrapper unicode_csv_reader mentioned in the python documentation accepts Unicode strings. This is because csv does not accept Unicode strings. cvs is probably not aware of encoding or locale and just treats the strings it gets as bytes. So what happens is that the wrapper encodes the Unicode strings, meaning that it creates a string of bytes. Then, when the wrapper gives back the results from csv, it decodes the bytes again, meaning that it converts the UTF-8 bytes sequences to the correct unicode characters.

If you give the wrapper a plain byte string e.g. by using f.readlines() it will give a UnicodeDecodeError on bytes with value > 127. You would use the wrapper in case you have unicode strings in your program that are in the CSV format.

I can imagine that the wrapper still has one limitation: since cvs does not accept unicode, and it also does not accept multi-byte delimiters, you can't parse files that have a unicode character as the delimiter.

link|improve this answer
feedback

A little late answer, but I have used unicodecsv with great success.

link|improve this answer
feedback

If you want a class the behaves exactly as the csv.reader class, then create a module wrapping S. Mark's code like this:

import csv

def utf_8_encoder(unicode_csv_data):
    for line in unicode_csv_data:
        yield line.encode('utf-8')

class reader(object):        
    def __init__(self, data_iter, dialect=csv.excel, **kwargs):
        # csv.py doesn't do Unicode; encode temporarily as UTF-8:
        self.csv_reader = csv.reader(utf_8_encoder(data_iter), dialect=dialect, **kwargs)

    def next(self):
        # decode UTF-8 back to Unicode, cell by cell:
        row = self.csv_reader.next()
        return [unicode(cell, 'utf-8') for cell in row]

    def __iter__(self):
        return self
link|improve this answer
I'm unable to get this to work for me: on linux, reading a file with non-ascii characters as r = reader(file('/tmp/csv-unicode.csv').read().split('\n')) , I get: "UnicodeDecodeError: 'ascii' codec can't decode byte 0xf8 in position 14: ordinal not in range(128)" – Parand Feb 16 '11 at 6:58
This does not work, the reader object must have line_num property. And with that property added it does not work either. – Maxim Yegorushkin May 31 '11 at 11:34
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.