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)

Keyword-Only Parameters

Name Description
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

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.

Methods

get
has_key
items
keys
update
values

get

get(key, default=None)

Parameters

Name Description
key
Required
default
default value: None

has_key

has_key(k)

Parameters

Name Description
k
Required

items

items()

keys

keys()

update

update(*args, **kwargs)

values

values()