Lines Matching refs:CSV
2 :mod:`csv` --- CSV File Reading and Writing
16 The so-called CSV (Comma Separated Values) format is the most common import and
17 export format for spreadsheets and databases. There is no "CSV standard", so
21 make it annoying to process CSV files from multiple sources. Still, while the
27 The :mod:`csv` module implements classes to read and write tabular data in CSV
30 knowing the precise details of the CSV format used by Excel. Programmers can
31 also describe the CSV formats understood by other applications or define their
32 own special-purpose CSV formats.
48 :pep:`305` - CSV File API
68 specific to a particular CSV dialect. It may be an instance of a subclass of
105 particular CSV dialect. It may be an instance of a subclass of the
114 CSV files without preprocessing the data returned from a ``cursor.fetch*`` call.
241 The :class:`excel` class defines the usual properties of an Excel-generated CSV
253 The :class:`Sniffer` class is used to deduce the format of a CSV file.
267 Analyze the sample text (presumed to be in CSV format) and return
276 # ... process CSV file contents here ...
393 When ``True``, raise exception :exc:`Error` on bad CSV input.
445 read CSV files (assuming they support complex numbers at all).
483 The simplest example of reading a CSV file::
538 to handle Unicode CSV data (a list of Unicode strings). :func:`utf_8_encoder`
540 a time. The encoded strings are parsed by the CSV reader, and
579 A CSV reader which will iterate over lines in the CSV file "f",
596 A CSV writer which will write rows to CSV file "f",