DelimitedTextDialect Class
Defines the input or output delimited (CSV) serialization for a blob query request.
- Inheritance
-
azure.storage.blob._shared.models.DictMixinDelimitedTextDialect
Constructor
DelimitedTextDialect(**kwargs: Any)
Keyword-Only Parameters
Name | Description |
---|---|
delimiter
|
Column separator, defaults to ','. |
quotechar
|
Field quote, defaults to '"'. |
lineterminator
|
Record separator, defaults to '\n'. |
escapechar
|
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()
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.
Azure SDK for Python