xsdata.formats.dataclass.serializers.xml module

class xsdata.formats.dataclass.serializers.xml.XmlSerializer(xml_declaration=True, encoding='UTF-8', pretty_print=False, context=<factory>)[source]

Bases: xsdata.formats.bindings.AbstractSerializer

Variables
xml_declaration: bool = True
encoding: str = 'UTF-8'
pretty_print: bool = False
context: XmlContext = None
render(obj, namespaces=None)[source]

Convert the given object tree to xml string.

Optionally provide a namespaces instance with a predefined list of namespace uris and prefixes.

Return type

str

render_tree(obj, namespaces=None)[source]

Convert a dataclass instance to a nested Element structure.

Optionally provide a namespaces instance with a predefined list of namespace uris and prefixes.

Return type

Element

render_node(obj, parent, namespaces)[source]

Recursively traverse the given dataclass instance fields and build the lxml Element structure.

Return type

Element

render_sub_nodes(parent, values, var, namespaces)[source]
render_sub_node(parent, value, var, namespaces)[source]
render_element_node(parent, value, var, namespaces)[source]
render_wildcard_node(parent, value, var, namespaces)[source]
classmethod next_value(meta, obj)[source]