Class CsvOptions (0.1.0)

CsvOptions(mapping=None, *, ignore_unknown_fields=False, **kwargs)

Describes CSV and similar semi-structured data formats.

Attributes

NameDescription
encoding str
Optional. The character encoding of the data. The default is UTF-8.
header_rows int
Optional. The number of rows to interpret as header rows that should be skipped when reading data rows.
delimiter str
Optional. The delimiter used to separate values. Defaults to ','.
quote str
Optional. The character used to quote column values. Defaults to empty, implying unquoted data.