DelimitedTextDialect Class

Defines the input or output delimited (CSV) serialization for a blob query request.

Inheritance
azure.storage.blob._shared.models.DictMixin
DelimitedTextDialect

Constructor

DelimitedTextDialect(**kwargs)

Parameters

delimiter
str

Column separator, defaults to ','.

quotechar
str

Field quote, defaults to '"'.

lineterminator
str

Record separator, defaults to '\n'.

escapechar
str

Escape char, defaults to empty.

has_header
bool

Whether the blob data includes headers in the first line. The default value is False, meaning that the data will be returned inclusive of the first line. If set to True, the data will be returned exclusive of the first line.