blob: ffdb3cb510473b2a868d3e2b63032bee4f3b022f [file] [log] [blame]
Georg Brandl116aa622007-08-15 14:28:22 +00001
2:mod:`csv` --- CSV File Reading and Writing
3===========================================
4
5.. module:: csv
6 :synopsis: Write and read tabular data to and from delimited files.
7.. sectionauthor:: Skip Montanaro <skip@pobox.com>
8
9
Georg Brandl116aa622007-08-15 14:28:22 +000010.. index::
11 single: csv
12 pair: data; tabular
13
14The so-called CSV (Comma Separated Values) format is the most common import and
15export format for spreadsheets and databases. There is no "CSV standard", so
16the format is operationally defined by the many applications which read and
17write it. The lack of a standard means that subtle differences often exist in
18the data produced and consumed by different applications. These differences can
19make it annoying to process CSV files from multiple sources. Still, while the
20delimiters and quoting characters vary, the overall format is similar enough
21that it is possible to write a single module which can efficiently manipulate
22such data, hiding the details of reading and writing the data from the
23programmer.
24
25The :mod:`csv` module implements classes to read and write tabular data in CSV
26format. It allows programmers to say, "write this data in the format preferred
27by Excel," or "read data from this file which was generated by Excel," without
28knowing the precise details of the CSV format used by Excel. Programmers can
29also describe the CSV formats understood by other applications or define their
30own special-purpose CSV formats.
31
32The :mod:`csv` module's :class:`reader` and :class:`writer` objects read and
33write sequences. Programmers can also read and write data in dictionary form
34using the :class:`DictReader` and :class:`DictWriter` classes.
35
36.. note::
37
38 This version of the :mod:`csv` module doesn't support Unicode input. Also,
39 there are currently some issues regarding ASCII NUL characters. Accordingly,
40 all input should be UTF-8 or printable ASCII to be safe; see the examples in
41 section :ref:`csv-examples`. These restrictions will be removed in the future.
42
43
44.. seealso::
45
Georg Brandl116aa622007-08-15 14:28:22 +000046 :pep:`305` - CSV File API
47 The Python Enhancement Proposal which proposed this addition to Python.
48
49
50.. _csv-contents:
51
52Module Contents
53---------------
54
55The :mod:`csv` module defines the following functions:
56
57
58.. function:: reader(csvfile[, dialect='excel'][, fmtparam])
59
60 Return a reader object which will iterate over lines in the given *csvfile*.
Georg Brandl9afde1c2007-11-01 20:32:30 +000061 *csvfile* can be any object which supports the :term:`iterator` protocol and returns a
Georg Brandl116aa622007-08-15 14:28:22 +000062 string each time its :meth:`next` method is called --- file objects and list
63 objects are both suitable. If *csvfile* is a file object, it must be opened
64 with the 'b' flag on platforms where that makes a difference. An optional
65 *dialect* parameter can be given which is used to define a set of parameters
66 specific to a particular CSV dialect. It may be an instance of a subclass of
67 the :class:`Dialect` class or one of the strings returned by the
68 :func:`list_dialects` function. The other optional *fmtparam* keyword arguments
69 can be given to override individual formatting parameters in the current
70 dialect. For full details about the dialect and formatting parameters, see
71 section :ref:`csv-fmt-params`.
72
73 All data read are returned as strings. No automatic data type conversion is
74 performed.
75
Georg Brandl55ac8f02007-09-01 13:51:09 +000076 The parser is quite strict with respect to multi-line quoted fields. Previously,
77 if a line ended within a quoted field without a terminating newline character, a
78 newline would be inserted into the returned field. This behavior caused problems
79 when reading files which contained carriage return characters within fields.
80 The behavior was changed to return the field without inserting newlines. As a
81 consequence, if newlines embedded within fields are important, the input should
82 be split into lines in a manner which preserves the newline characters.
Georg Brandl116aa622007-08-15 14:28:22 +000083
Christian Heimesb9eccbf2007-12-05 20:18:38 +000084 A short usage example::
85
86 >>> import csv
87 >>> spamReader = csv.reader(open('eggs.csv'), delimiter=' ', quotechar='|')
88 >>> for row in spamReader:
Georg Brandlf6945182008-02-01 11:56:49 +000089 ... print(', '.join(row))
Christian Heimesb9eccbf2007-12-05 20:18:38 +000090 Spam, Spam, Spam, Spam, Spam, Baked Beans
91 Spam, Lovely Spam, Wonderful Spam
92
Georg Brandl116aa622007-08-15 14:28:22 +000093
94.. function:: writer(csvfile[, dialect='excel'][, fmtparam])
95
96 Return a writer object responsible for converting the user's data into delimited
97 strings on the given file-like object. *csvfile* can be any object with a
98 :func:`write` method. If *csvfile* is a file object, it must be opened with the
99 'b' flag on platforms where that makes a difference. An optional *dialect*
100 parameter can be given which is used to define a set of parameters specific to a
101 particular CSV dialect. It may be an instance of a subclass of the
102 :class:`Dialect` class or one of the strings returned by the
103 :func:`list_dialects` function. The other optional *fmtparam* keyword arguments
104 can be given to override individual formatting parameters in the current
105 dialect. For full details about the dialect and formatting parameters, see
106 section :ref:`csv-fmt-params`. To make it
107 as easy as possible to interface with modules which implement the DB API, the
108 value :const:`None` is written as the empty string. While this isn't a
109 reversible transformation, it makes it easier to dump SQL NULL data values to
110 CSV files without preprocessing the data returned from a ``cursor.fetch*`` call.
111 All other non-string data are stringified with :func:`str` before being written.
112
Christian Heimesb9eccbf2007-12-05 20:18:38 +0000113 A short usage example::
114
115 >>> import csv
116 >>> spamWriter = csv.writer(open('eggs.csv', 'w'), delimiter=' ',
117 ... quotechar='|', quoting=QUOTE_MINIMAL)
118 >>> spamWriter.writerow(['Spam'] * 5 + ['Baked Beans'])
119 >>> spamWriter.writerow(['Spam', 'Lovely Spam', 'Wonderful Spam'])
120
Georg Brandl116aa622007-08-15 14:28:22 +0000121
122.. function:: register_dialect(name[, dialect][, fmtparam])
123
Georg Brandlf6945182008-02-01 11:56:49 +0000124 Associate *dialect* with *name*. *name* must be a string. The
Georg Brandl116aa622007-08-15 14:28:22 +0000125 dialect can be specified either by passing a sub-class of :class:`Dialect`, or
126 by *fmtparam* keyword arguments, or both, with keyword arguments overriding
127 parameters of the dialect. For full details about the dialect and formatting
128 parameters, see section :ref:`csv-fmt-params`.
129
130
131.. function:: unregister_dialect(name)
132
133 Delete the dialect associated with *name* from the dialect registry. An
134 :exc:`Error` is raised if *name* is not a registered dialect name.
135
136
137.. function:: get_dialect(name)
138
Georg Brandl6554cb92007-12-02 23:15:43 +0000139 Return the dialect associated with *name*. An :exc:`Error` is raised if
140 *name* is not a registered dialect name. This function returns an immutable
141 :class:`Dialect`.
Georg Brandl116aa622007-08-15 14:28:22 +0000142
143.. function:: list_dialects()
144
145 Return the names of all registered dialects.
146
147
148.. function:: field_size_limit([new_limit])
149
150 Returns the current maximum field size allowed by the parser. If *new_limit* is
151 given, this becomes the new limit.
152
Georg Brandl116aa622007-08-15 14:28:22 +0000153
154The :mod:`csv` module defines the following classes:
155
Georg Brandl9afde1c2007-11-01 20:32:30 +0000156.. class:: DictReader(csvfile[, fieldnames=None[, restkey=None[, restval=None[, dialect='excel'[, *args, **kwds]]]]])
Georg Brandl116aa622007-08-15 14:28:22 +0000157
158 Create an object which operates like a regular reader but maps the information
159 read into a dict whose keys are given by the optional *fieldnames* parameter.
160 If the *fieldnames* parameter is omitted, the values in the first row of the
161 *csvfile* will be used as the fieldnames. If the row read has fewer fields than
162 the fieldnames sequence, the value of *restval* will be used as the default
163 value. If the row read has more fields than the fieldnames sequence, the
164 remaining data is added as a sequence keyed by the value of *restkey*. If the
165 row read has fewer fields than the fieldnames sequence, the remaining keys take
166 the value of the optional *restval* parameter. Any other optional or keyword
167 arguments are passed to the underlying :class:`reader` instance.
168
169
170.. class:: DictWriter(csvfile, fieldnames[, restval=''[, extrasaction='raise'[, dialect='excel'[, *args, **kwds]]]])
171
172 Create an object which operates like a regular writer but maps dictionaries onto
173 output rows. The *fieldnames* parameter identifies the order in which values in
174 the dictionary passed to the :meth:`writerow` method are written to the
175 *csvfile*. The optional *restval* parameter specifies the value to be written
176 if the dictionary is missing a key in *fieldnames*. If the dictionary passed to
177 the :meth:`writerow` method contains a key not found in *fieldnames*, the
178 optional *extrasaction* parameter indicates what action to take. If it is set
179 to ``'raise'`` a :exc:`ValueError` is raised. If it is set to ``'ignore'``,
180 extra values in the dictionary are ignored. Any other optional or keyword
181 arguments are passed to the underlying :class:`writer` instance.
182
183 Note that unlike the :class:`DictReader` class, the *fieldnames* parameter of
184 the :class:`DictWriter` is not optional. Since Python's :class:`dict` objects
185 are not ordered, there is not enough information available to deduce the order
186 in which the row should be written to the *csvfile*.
187
188
189.. class:: Dialect
190
191 The :class:`Dialect` class is a container class relied on primarily for its
192 attributes, which are used to define the parameters for a specific
193 :class:`reader` or :class:`writer` instance.
194
195
196.. class:: excel()
197
198 The :class:`excel` class defines the usual properties of an Excel-generated CSV
199 file. It is registered with the dialect name ``'excel'``.
200
201
202.. class:: excel_tab()
203
204 The :class:`excel_tab` class defines the usual properties of an Excel-generated
205 TAB-delimited file. It is registered with the dialect name ``'excel-tab'``.
206
207
208.. class:: Sniffer()
209
210 The :class:`Sniffer` class is used to deduce the format of a CSV file.
211
212The :class:`Sniffer` class provides two methods:
213
Georg Brandl116aa622007-08-15 14:28:22 +0000214.. method:: Sniffer.sniff(sample[, delimiters=None])
215
216 Analyze the given *sample* and return a :class:`Dialect` subclass reflecting the
217 parameters found. If the optional *delimiters* parameter is given, it is
218 interpreted as a string containing possible valid delimiter characters.
219
220
221.. method:: Sniffer.has_header(sample)
222
223 Analyze the sample text (presumed to be in CSV format) and return :const:`True`
224 if the first row appears to be a series of column headers.
225
Christian Heimes7f044312008-01-06 17:05:40 +0000226An example for :class:`Sniffer` use::
Georg Brandl116aa622007-08-15 14:28:22 +0000227
Christian Heimes7f044312008-01-06 17:05:40 +0000228 csvfile = open("example.csv")
229 dialect = csv.Sniffer().sniff(csvfile.read(1024))
230 csvfile.seek(0)
231 reader = csv.reader(csvfile, dialect)
232 # ... process CSV file contents here ...
233
234
235The :mod:`csv` module defines the following constants:
Georg Brandl116aa622007-08-15 14:28:22 +0000236
237.. data:: QUOTE_ALL
238
239 Instructs :class:`writer` objects to quote all fields.
240
241
242.. data:: QUOTE_MINIMAL
243
244 Instructs :class:`writer` objects to only quote those fields which contain
245 special characters such as *delimiter*, *quotechar* or any of the characters in
246 *lineterminator*.
247
248
249.. data:: QUOTE_NONNUMERIC
250
251 Instructs :class:`writer` objects to quote all non-numeric fields.
252
253 Instructs the reader to convert all non-quoted fields to type *float*.
254
255
256.. data:: QUOTE_NONE
257
258 Instructs :class:`writer` objects to never quote fields. When the current
259 *delimiter* occurs in output data it is preceded by the current *escapechar*
260 character. If *escapechar* is not set, the writer will raise :exc:`Error` if
261 any characters that require escaping are encountered.
262
263 Instructs :class:`reader` to perform no special processing of quote characters.
264
265The :mod:`csv` module defines the following exception:
266
267
268.. exception:: Error
269
270 Raised by any of the functions when an error is detected.
271
272
273.. _csv-fmt-params:
274
275Dialects and Formatting Parameters
276----------------------------------
277
278To make it easier to specify the format of input and output records, specific
279formatting parameters are grouped together into dialects. A dialect is a
280subclass of the :class:`Dialect` class having a set of specific methods and a
281single :meth:`validate` method. When creating :class:`reader` or
282:class:`writer` objects, the programmer can specify a string or a subclass of
283the :class:`Dialect` class as the dialect parameter. In addition to, or instead
284of, the *dialect* parameter, the programmer can also specify individual
285formatting parameters, which have the same names as the attributes defined below
286for the :class:`Dialect` class.
287
288Dialects support the following attributes:
289
290
291.. attribute:: Dialect.delimiter
292
293 A one-character string used to separate fields. It defaults to ``','``.
294
295
296.. attribute:: Dialect.doublequote
297
298 Controls how instances of *quotechar* appearing inside a field should be
299 themselves be quoted. When :const:`True`, the character is doubled. When
300 :const:`False`, the *escapechar* is used as a prefix to the *quotechar*. It
301 defaults to :const:`True`.
302
303 On output, if *doublequote* is :const:`False` and no *escapechar* is set,
304 :exc:`Error` is raised if a *quotechar* is found in a field.
305
306
307.. attribute:: Dialect.escapechar
308
309 A one-character string used by the writer to escape the *delimiter* if *quoting*
310 is set to :const:`QUOTE_NONE` and the *quotechar* if *doublequote* is
311 :const:`False`. On reading, the *escapechar* removes any special meaning from
312 the following character. It defaults to :const:`None`, which disables escaping.
313
314
315.. attribute:: Dialect.lineterminator
316
317 The string used to terminate lines produced by the :class:`writer`. It defaults
318 to ``'\r\n'``.
319
320 .. note::
321
322 The :class:`reader` is hard-coded to recognise either ``'\r'`` or ``'\n'`` as
323 end-of-line, and ignores *lineterminator*. This behavior may change in the
324 future.
325
326
327.. attribute:: Dialect.quotechar
328
329 A one-character string used to quote fields containing special characters, such
330 as the *delimiter* or *quotechar*, or which contain new-line characters. It
331 defaults to ``'"'``.
332
333
334.. attribute:: Dialect.quoting
335
336 Controls when quotes should be generated by the writer and recognised by the
337 reader. It can take on any of the :const:`QUOTE_\*` constants (see section
338 :ref:`csv-contents`) and defaults to :const:`QUOTE_MINIMAL`.
339
340
341.. attribute:: Dialect.skipinitialspace
342
343 When :const:`True`, whitespace immediately following the *delimiter* is ignored.
344 The default is :const:`False`.
345
346
347Reader Objects
348--------------
349
350Reader objects (:class:`DictReader` instances and objects returned by the
351:func:`reader` function) have the following public methods:
352
353
354.. method:: csvreader.next()
355
356 Return the next row of the reader's iterable object as a list, parsed according
357 to the current dialect.
358
359Reader objects have the following public attributes:
360
361
362.. attribute:: csvreader.dialect
363
364 A read-only description of the dialect in use by the parser.
365
366
367.. attribute:: csvreader.line_num
368
369 The number of lines read from the source iterator. This is not the same as the
370 number of records returned, as records can span multiple lines.
371
Georg Brandl116aa622007-08-15 14:28:22 +0000372
373
374Writer Objects
375--------------
376
377:class:`Writer` objects (:class:`DictWriter` instances and objects returned by
378the :func:`writer` function) have the following public methods. A *row* must be
379a sequence of strings or numbers for :class:`Writer` objects and a dictionary
380mapping fieldnames to strings or numbers (by passing them through :func:`str`
381first) for :class:`DictWriter` objects. Note that complex numbers are written
382out surrounded by parens. This may cause some problems for other programs which
383read CSV files (assuming they support complex numbers at all).
384
385
386.. method:: csvwriter.writerow(row)
387
388 Write the *row* parameter to the writer's file object, formatted according to
389 the current dialect.
390
391
392.. method:: csvwriter.writerows(rows)
393
394 Write all the *rows* parameters (a list of *row* objects as described above) to
395 the writer's file object, formatted according to the current dialect.
396
397Writer objects have the following public attribute:
398
399
400.. attribute:: csvwriter.dialect
401
402 A read-only description of the dialect in use by the writer.
403
404
405.. _csv-examples:
406
407Examples
408--------
409
410The simplest example of reading a CSV file::
411
412 import csv
413 reader = csv.reader(open("some.csv", "rb"))
414 for row in reader:
Georg Brandl6911e3c2007-09-04 07:15:32 +0000415 print(row)
Georg Brandl116aa622007-08-15 14:28:22 +0000416
417Reading a file with an alternate format::
418
419 import csv
420 reader = csv.reader(open("passwd", "rb"), delimiter=':', quoting=csv.QUOTE_NONE)
421 for row in reader:
Georg Brandl6911e3c2007-09-04 07:15:32 +0000422 print(row)
Georg Brandl116aa622007-08-15 14:28:22 +0000423
424The corresponding simplest possible writing example is::
425
426 import csv
427 writer = csv.writer(open("some.csv", "wb"))
428 writer.writerows(someiterable)
429
430Registering a new dialect::
431
432 import csv
433
434 csv.register_dialect('unixpwd', delimiter=':', quoting=csv.QUOTE_NONE)
435
436 reader = csv.reader(open("passwd", "rb"), 'unixpwd')
437
438A slightly more advanced use of the reader --- catching and reporting errors::
439
440 import csv, sys
441 filename = "some.csv"
442 reader = csv.reader(open(filename, "rb"))
443 try:
444 for row in reader:
Georg Brandl6911e3c2007-09-04 07:15:32 +0000445 print(row)
Georg Brandl116aa622007-08-15 14:28:22 +0000446 except csv.Error as e:
447 sys.exit('file %s, line %d: %s' % (filename, reader.line_num, e))
448
449And while the module doesn't directly support parsing strings, it can easily be
450done::
451
452 import csv
453 for row in csv.reader(['one,two,three']):
Georg Brandl6911e3c2007-09-04 07:15:32 +0000454 print(row)
Georg Brandl116aa622007-08-15 14:28:22 +0000455
456The :mod:`csv` module doesn't directly support reading and writing Unicode, but
457it is 8-bit-clean save for some problems with ASCII NUL characters. So you can
458write functions or classes that handle the encoding and decoding for you as long
459as you avoid encodings like UTF-16 that use NULs. UTF-8 is recommended.
460
Georg Brandl9afde1c2007-11-01 20:32:30 +0000461:func:`unicode_csv_reader` below is a :term:`generator` that wraps :class:`csv.reader`
Georg Brandl116aa622007-08-15 14:28:22 +0000462to handle Unicode CSV data (a list of Unicode strings). :func:`utf_8_encoder`
Georg Brandl9afde1c2007-11-01 20:32:30 +0000463is a :term:`generator` that encodes the Unicode strings as UTF-8, one string (or row) at
Georg Brandl116aa622007-08-15 14:28:22 +0000464a time. The encoded strings are parsed by the CSV reader, and
465:func:`unicode_csv_reader` decodes the UTF-8-encoded cells back into Unicode::
466
467 import csv
468
469 def unicode_csv_reader(unicode_csv_data, dialect=csv.excel, **kwargs):
470 # csv.py doesn't do Unicode; encode temporarily as UTF-8:
471 csv_reader = csv.reader(utf_8_encoder(unicode_csv_data),
472 dialect=dialect, **kwargs)
473 for row in csv_reader:
474 # decode UTF-8 back to Unicode, cell by cell:
475 yield [unicode(cell, 'utf-8') for cell in row]
476
477 def utf_8_encoder(unicode_csv_data):
478 for line in unicode_csv_data:
479 yield line.encode('utf-8')
480
481For all other encodings the following :class:`UnicodeReader` and
482:class:`UnicodeWriter` classes can be used. They take an additional *encoding*
483parameter in their constructor and make sure that the data passes the real
484reader or writer encoded as UTF-8::
485
486 import csv, codecs, cStringIO
487
488 class UTF8Recoder:
489 """
490 Iterator that reads an encoded stream and reencodes the input to UTF-8
491 """
492 def __init__(self, f, encoding):
493 self.reader = codecs.getreader(encoding)(f)
494
495 def __iter__(self):
496 return self
497
498 def __next__(self):
499 return next(self.reader).encode("utf-8")
500
501 class UnicodeReader:
502 """
503 A CSV reader which will iterate over lines in the CSV file "f",
504 which is encoded in the given encoding.
505 """
506
507 def __init__(self, f, dialect=csv.excel, encoding="utf-8", **kwds):
508 f = UTF8Recoder(f, encoding)
509 self.reader = csv.reader(f, dialect=dialect, **kwds)
510
511 def __next__(self):
512 row = next(self.reader)
513 return [unicode(s, "utf-8") for s in row]
514
515 def __iter__(self):
516 return self
517
518 class UnicodeWriter:
519 """
520 A CSV writer which will write rows to CSV file "f",
521 which is encoded in the given encoding.
522 """
523
524 def __init__(self, f, dialect=csv.excel, encoding="utf-8", **kwds):
525 # Redirect output to a queue
526 self.queue = cStringIO.StringIO()
527 self.writer = csv.writer(self.queue, dialect=dialect, **kwds)
528 self.stream = f
529 self.encoder = codecs.getincrementalencoder(encoding)()
530
531 def writerow(self, row):
532 self.writer.writerow([s.encode("utf-8") for s in row])
533 # Fetch UTF-8 output from the queue ...
534 data = self.queue.getvalue()
535 data = data.decode("utf-8")
536 # ... and reencode it into the target encoding
537 data = self.encoder.encode(data)
538 # write to the target stream
539 self.stream.write(data)
540 # empty queue
541 self.queue.truncate(0)
542
543 def writerows(self, rows):
544 for row in rows:
545 self.writerow(row)
546