blob: 9043dbc4538e0576231c7571acdafc92a2942779 [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
Benjamin Petersone41251e2008-04-25 01:59:09 +0000212 The :class:`Sniffer` class provides two methods:
Georg Brandl116aa622007-08-15 14:28:22 +0000213
Benjamin Petersone41251e2008-04-25 01:59:09 +0000214 .. method:: sniff(sample[, delimiters=None])
Georg Brandl116aa622007-08-15 14:28:22 +0000215
Benjamin Petersone41251e2008-04-25 01:59:09 +0000216 Analyze the given *sample* and return a :class:`Dialect` subclass
217 reflecting the parameters found. If the optional *delimiters* parameter
218 is given, it is interpreted as a string containing possible valid
219 delimiter characters.
Georg Brandl116aa622007-08-15 14:28:22 +0000220
221
Benjamin Petersone41251e2008-04-25 01:59:09 +0000222 .. method:: has_header(sample)
Georg Brandl116aa622007-08-15 14:28:22 +0000223
Benjamin Petersone41251e2008-04-25 01:59:09 +0000224 Analyze the sample text (presumed to be in CSV format) and return
225 :const:`True` if the first row appears to be a series of column headers.
Georg Brandl116aa622007-08-15 14:28:22 +0000226
Christian Heimes7f044312008-01-06 17:05:40 +0000227An example for :class:`Sniffer` use::
Georg Brandl116aa622007-08-15 14:28:22 +0000228
Christian Heimes7f044312008-01-06 17:05:40 +0000229 csvfile = open("example.csv")
230 dialect = csv.Sniffer().sniff(csvfile.read(1024))
231 csvfile.seek(0)
232 reader = csv.reader(csvfile, dialect)
233 # ... process CSV file contents here ...
234
235
236The :mod:`csv` module defines the following constants:
Georg Brandl116aa622007-08-15 14:28:22 +0000237
238.. data:: QUOTE_ALL
239
240 Instructs :class:`writer` objects to quote all fields.
241
242
243.. data:: QUOTE_MINIMAL
244
245 Instructs :class:`writer` objects to only quote those fields which contain
246 special characters such as *delimiter*, *quotechar* or any of the characters in
247 *lineterminator*.
248
249
250.. data:: QUOTE_NONNUMERIC
251
252 Instructs :class:`writer` objects to quote all non-numeric fields.
253
254 Instructs the reader to convert all non-quoted fields to type *float*.
255
256
257.. data:: QUOTE_NONE
258
259 Instructs :class:`writer` objects to never quote fields. When the current
260 *delimiter* occurs in output data it is preceded by the current *escapechar*
261 character. If *escapechar* is not set, the writer will raise :exc:`Error` if
262 any characters that require escaping are encountered.
263
264 Instructs :class:`reader` to perform no special processing of quote characters.
265
266The :mod:`csv` module defines the following exception:
267
268
269.. exception:: Error
270
271 Raised by any of the functions when an error is detected.
272
273
274.. _csv-fmt-params:
275
276Dialects and Formatting Parameters
277----------------------------------
278
279To make it easier to specify the format of input and output records, specific
280formatting parameters are grouped together into dialects. A dialect is a
281subclass of the :class:`Dialect` class having a set of specific methods and a
282single :meth:`validate` method. When creating :class:`reader` or
283:class:`writer` objects, the programmer can specify a string or a subclass of
284the :class:`Dialect` class as the dialect parameter. In addition to, or instead
285of, the *dialect* parameter, the programmer can also specify individual
286formatting parameters, which have the same names as the attributes defined below
287for the :class:`Dialect` class.
288
289Dialects support the following attributes:
290
291
292.. attribute:: Dialect.delimiter
293
294 A one-character string used to separate fields. It defaults to ``','``.
295
296
297.. attribute:: Dialect.doublequote
298
299 Controls how instances of *quotechar* appearing inside a field should be
300 themselves be quoted. When :const:`True`, the character is doubled. When
301 :const:`False`, the *escapechar* is used as a prefix to the *quotechar*. It
302 defaults to :const:`True`.
303
304 On output, if *doublequote* is :const:`False` and no *escapechar* is set,
305 :exc:`Error` is raised if a *quotechar* is found in a field.
306
307
308.. attribute:: Dialect.escapechar
309
310 A one-character string used by the writer to escape the *delimiter* if *quoting*
311 is set to :const:`QUOTE_NONE` and the *quotechar* if *doublequote* is
312 :const:`False`. On reading, the *escapechar* removes any special meaning from
313 the following character. It defaults to :const:`None`, which disables escaping.
314
315
316.. attribute:: Dialect.lineterminator
317
318 The string used to terminate lines produced by the :class:`writer`. It defaults
319 to ``'\r\n'``.
320
321 .. note::
322
323 The :class:`reader` is hard-coded to recognise either ``'\r'`` or ``'\n'`` as
324 end-of-line, and ignores *lineterminator*. This behavior may change in the
325 future.
326
327
328.. attribute:: Dialect.quotechar
329
330 A one-character string used to quote fields containing special characters, such
331 as the *delimiter* or *quotechar*, or which contain new-line characters. It
332 defaults to ``'"'``.
333
334
335.. attribute:: Dialect.quoting
336
337 Controls when quotes should be generated by the writer and recognised by the
338 reader. It can take on any of the :const:`QUOTE_\*` constants (see section
339 :ref:`csv-contents`) and defaults to :const:`QUOTE_MINIMAL`.
340
341
342.. attribute:: Dialect.skipinitialspace
343
344 When :const:`True`, whitespace immediately following the *delimiter* is ignored.
345 The default is :const:`False`.
346
347
348Reader Objects
349--------------
350
351Reader objects (:class:`DictReader` instances and objects returned by the
352:func:`reader` function) have the following public methods:
353
354
355.. method:: csvreader.next()
356
357 Return the next row of the reader's iterable object as a list, parsed according
358 to the current dialect.
359
360Reader objects have the following public attributes:
361
362
363.. attribute:: csvreader.dialect
364
365 A read-only description of the dialect in use by the parser.
366
367
368.. attribute:: csvreader.line_num
369
370 The number of lines read from the source iterator. This is not the same as the
371 number of records returned, as records can span multiple lines.
372
Georg Brandl116aa622007-08-15 14:28:22 +0000373
374
375Writer Objects
376--------------
377
378:class:`Writer` objects (:class:`DictWriter` instances and objects returned by
379the :func:`writer` function) have the following public methods. A *row* must be
380a sequence of strings or numbers for :class:`Writer` objects and a dictionary
381mapping fieldnames to strings or numbers (by passing them through :func:`str`
382first) for :class:`DictWriter` objects. Note that complex numbers are written
383out surrounded by parens. This may cause some problems for other programs which
384read CSV files (assuming they support complex numbers at all).
385
386
387.. method:: csvwriter.writerow(row)
388
389 Write the *row* parameter to the writer's file object, formatted according to
390 the current dialect.
391
392
393.. method:: csvwriter.writerows(rows)
394
395 Write all the *rows* parameters (a list of *row* objects as described above) to
396 the writer's file object, formatted according to the current dialect.
397
398Writer objects have the following public attribute:
399
400
401.. attribute:: csvwriter.dialect
402
403 A read-only description of the dialect in use by the writer.
404
405
406.. _csv-examples:
407
408Examples
409--------
410
411The simplest example of reading a CSV file::
412
413 import csv
414 reader = csv.reader(open("some.csv", "rb"))
415 for row in reader:
Georg Brandl6911e3c2007-09-04 07:15:32 +0000416 print(row)
Georg Brandl116aa622007-08-15 14:28:22 +0000417
418Reading a file with an alternate format::
419
420 import csv
421 reader = csv.reader(open("passwd", "rb"), delimiter=':', quoting=csv.QUOTE_NONE)
422 for row in reader:
Georg Brandl6911e3c2007-09-04 07:15:32 +0000423 print(row)
Georg Brandl116aa622007-08-15 14:28:22 +0000424
425The corresponding simplest possible writing example is::
426
427 import csv
428 writer = csv.writer(open("some.csv", "wb"))
429 writer.writerows(someiterable)
430
431Registering a new dialect::
432
433 import csv
434
435 csv.register_dialect('unixpwd', delimiter=':', quoting=csv.QUOTE_NONE)
436
437 reader = csv.reader(open("passwd", "rb"), 'unixpwd')
438
439A slightly more advanced use of the reader --- catching and reporting errors::
440
441 import csv, sys
442 filename = "some.csv"
443 reader = csv.reader(open(filename, "rb"))
444 try:
445 for row in reader:
Georg Brandl6911e3c2007-09-04 07:15:32 +0000446 print(row)
Georg Brandl116aa622007-08-15 14:28:22 +0000447 except csv.Error as e:
448 sys.exit('file %s, line %d: %s' % (filename, reader.line_num, e))
449
450And while the module doesn't directly support parsing strings, it can easily be
451done::
452
453 import csv
454 for row in csv.reader(['one,two,three']):
Georg Brandl6911e3c2007-09-04 07:15:32 +0000455 print(row)
Georg Brandl116aa622007-08-15 14:28:22 +0000456
457The :mod:`csv` module doesn't directly support reading and writing Unicode, but
458it is 8-bit-clean save for some problems with ASCII NUL characters. So you can
459write functions or classes that handle the encoding and decoding for you as long
460as you avoid encodings like UTF-16 that use NULs. UTF-8 is recommended.
461
Georg Brandl9afde1c2007-11-01 20:32:30 +0000462:func:`unicode_csv_reader` below is a :term:`generator` that wraps :class:`csv.reader`
Georg Brandl116aa622007-08-15 14:28:22 +0000463to handle Unicode CSV data (a list of Unicode strings). :func:`utf_8_encoder`
Georg Brandl9afde1c2007-11-01 20:32:30 +0000464is a :term:`generator` that encodes the Unicode strings as UTF-8, one string (or row) at
Georg Brandl116aa622007-08-15 14:28:22 +0000465a time. The encoded strings are parsed by the CSV reader, and
466:func:`unicode_csv_reader` decodes the UTF-8-encoded cells back into Unicode::
467
468 import csv
469
470 def unicode_csv_reader(unicode_csv_data, dialect=csv.excel, **kwargs):
471 # csv.py doesn't do Unicode; encode temporarily as UTF-8:
472 csv_reader = csv.reader(utf_8_encoder(unicode_csv_data),
473 dialect=dialect, **kwargs)
474 for row in csv_reader:
475 # decode UTF-8 back to Unicode, cell by cell:
476 yield [unicode(cell, 'utf-8') for cell in row]
477
478 def utf_8_encoder(unicode_csv_data):
479 for line in unicode_csv_data:
480 yield line.encode('utf-8')
481
482For all other encodings the following :class:`UnicodeReader` and
483:class:`UnicodeWriter` classes can be used. They take an additional *encoding*
484parameter in their constructor and make sure that the data passes the real
485reader or writer encoded as UTF-8::
486
Georg Brandl03124942008-06-10 15:50:56 +0000487 import csv, codecs, io
Georg Brandl116aa622007-08-15 14:28:22 +0000488
489 class UTF8Recoder:
490 """
491 Iterator that reads an encoded stream and reencodes the input to UTF-8
492 """
493 def __init__(self, f, encoding):
494 self.reader = codecs.getreader(encoding)(f)
495
496 def __iter__(self):
497 return self
498
499 def __next__(self):
500 return next(self.reader).encode("utf-8")
501
502 class UnicodeReader:
503 """
504 A CSV reader which will iterate over lines in the CSV file "f",
505 which is encoded in the given encoding.
506 """
507
508 def __init__(self, f, dialect=csv.excel, encoding="utf-8", **kwds):
509 f = UTF8Recoder(f, encoding)
510 self.reader = csv.reader(f, dialect=dialect, **kwds)
511
512 def __next__(self):
513 row = next(self.reader)
514 return [unicode(s, "utf-8") for s in row]
515
516 def __iter__(self):
517 return self
518
519 class UnicodeWriter:
520 """
521 A CSV writer which will write rows to CSV file "f",
522 which is encoded in the given encoding.
523 """
524
525 def __init__(self, f, dialect=csv.excel, encoding="utf-8", **kwds):
526 # Redirect output to a queue
Georg Brandl03124942008-06-10 15:50:56 +0000527 self.queue = io.StringIO()
Georg Brandl116aa622007-08-15 14:28:22 +0000528 self.writer = csv.writer(self.queue, dialect=dialect, **kwds)
529 self.stream = f
530 self.encoder = codecs.getincrementalencoder(encoding)()
531
532 def writerow(self, row):
533 self.writer.writerow([s.encode("utf-8") for s in row])
534 # Fetch UTF-8 output from the queue ...
535 data = self.queue.getvalue()
536 data = data.decode("utf-8")
537 # ... and reencode it into the target encoding
538 data = self.encoder.encode(data)
539 # write to the target stream
540 self.stream.write(data)
541 # empty queue
542 self.queue.truncate(0)
543
544 def writerows(self, rows):
545 for row in rows:
546 self.writerow(row)
547