config
xsdata.formats.dataclass.serializers.config
SerializerConfig
dataclass
Serializer configuration options.
Not all options are applicable for both xml and json documents.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
encoding | str | Text encoding | 'UTF-8' |
xml_version | str | XML Version number (1.0|1.1) | '1.0' |
xml_declaration | bool | Generate XML declaration | True |
indent | Optional[str] | Indent output by the given string | None |
ignore_default_attributes | bool | Ignore optional attributes with default values | False |
schema_location | Optional[str] | xsi:schemaLocation attribute value | None |
no_namespace_schema_location | Optional[str] | xsi:noNamespaceSchemaLocation attribute value | None |
globalns | Optional[dict[str, Callable]] | Dictionary containing global variables to extend or overwrite for typing | None |
Source code in xsdata/formats/dataclass/serializers/config.py
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 |
|
__post_init__(pretty_print, pretty_print_indent)
Handle deprecated pretty print/indent behaviour.
Source code in xsdata/formats/dataclass/serializers/config.py
37 38 39 40 41 42 |
|
__setattr__(key, value)
Handle deprecated pretty print/indent behaviour.
Source code in xsdata/formats/dataclass/serializers/config.py
44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 |
|