Lines Matching refs:CSV
1 :mod:`csv` --- CSV File Reading and Writing
17 The so-called CSV (Comma Separated Values) format is the most common import and
18 export format for spreadsheets and databases. CSV format was used for many
22 differences can make it annoying to process CSV files from multiple sources.
28 The :mod:`csv` module implements classes to read and write tabular data in CSV
31 knowing the precise details of the CSV format used by Excel. Programmers can
32 also describe the CSV formats understood by other applications or define their
33 own special-purpose CSV formats.
41 :pep:`305` - CSV File API
64 specific to a particular CSV dialect. It may be an instance of a subclass of
93 particular CSV dialect. It may be an instance of a subclass of the
102 CSV files without preprocessing the data returned from a ``cursor.fetch*`` call.
231 The :class:`excel` class defines the usual properties of an Excel-generated CSV
243 The :class:`unix_dialect` class defines the usual properties of a CSV file
252 The :class:`Sniffer` class is used to deduce the format of a CSV file.
266 Analyze the sample text (presumed to be in CSV format) and return
275 # ... process CSV file contents here ...
391 When ``True``, raise exception :exc:`Error` on bad CSV input.
440 read CSV files (assuming they support complex numbers at all).
480 The simplest example of reading a CSV file::
503 Since :func:`open` is used to open a CSV file for reading, the file