Python 3.2 CSV Module -- Very, very nice
A common (and small) task is reformatting a file that's in some variant of CSV. It could be a SQL database extract, or an export from an application that works well with CSV files.
In Python 2.x, a CSV file with Unicode was a bit of a problem. The …
more ...