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?