Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Why does this code raise csv.Error?

Tags:

python

csv

I'm trying to write out CSV using Python's built-in csv module.

import csv
import sys
writer = csv.writer(sys.stdout, delimiter="|", quoting=csv.QUOTE_NONE)
writer.writerow(['"foo', "bar"])

The output I expect is:

"foo|bar

However, I get this:

Error: need to escape, but no escapechar set

The documentation says:

When the current delimiter occurs in output data it is preceded by the current escapechar character. If escapechar is not set, the writer will raise Error if any characters that require escaping are encountered.

Now, the delimiter ('|', the pipe character) doesn't appear anywhere in the data. Why is the CSV writer trying to escape something?

like image 517
mpenkov Avatar asked Apr 25 '14 14:04

mpenkov


People also ask

What is CSV in Python?

A CSV file (Comma Separated Values file) is a type of plain text file that uses specific structuring to arrange tabular data. Because it's a plain text file, it can contain only actual text data—in other words, printable ASCII or Unicode characters. The structure of a CSV file is given away by its name.


1 Answers

Setting quoting=csv.QUOTE_NONE is not enough; you also need to set quotechar to an empty string:

>>> import sys
>>> import csv
>>> writer = csv.writer(sys.stdout, delimiter="|", quoting=csv.QUOTE_NONE, quotechar='')
>>> writer.writerow(['"foo', "bar"])
"foo|bar

Otherwise, csv.writer() will try to escape any existing quotechar characters, but it needs csv.escapechar to be set for that.

like image 71
Martijn Pieters Avatar answered Sep 17 '22 08:09

Martijn Pieters