XmlSerializer

class xsdata.formats.dataclass.serializers.XmlSerializer(config=<factory>, context=<factory>, writer=<class 'xsdata.formats.dataclass.serializers.writers.lxml.LxmlEventWriter'>)[source]

Xml serializer for dataclasses.

Parameters
writer

alias of xsdata.formats.dataclass.serializers.writers.lxml.LxmlEventWriter

render(obj, ns_map=None)[source]

Convert and return the given object tree as xml string.

Parameters
  • obj (Any) – The input dataclass instance

  • ns_map (Optional[Dict]) – User defined namespace prefix-URI map

Return type

str

write(out, obj, ns_map=None)[source]

Write the given object tree to the output text stream.

Parameters
  • out (TextIO) – The output stream

  • obj (Any) – The input dataclass instance

  • ns_map (Optional[Dict]) – User defined namespace prefix-URI map

write_object(obj)[source]

Produce an events stream from a dataclass or a derived element.

Parameters

obj (Any) –

write_dataclass(obj, namespace=None, qname=None, nillable=False, xsi_type=None)[source]

Produce an events stream from a dataclass.

Optionally override the qualified name and the xsi properties type and nil.

Parameters
Return type

Generator

write_xsi_type(value, var, namespace)[source]

Produce an events stream from a dataclass for the given var with with xsi abstract type check for non wildcards.

Parameters
Return type

Generator

write_value(value, var, namespace)[source]

Delegates the given value to the correct writer according to the variable metadata.

The order of the checks is important as more than one condition can be true.

Parameters
Return type

Generator

write_list(values, var, namespace)[source]

Produce an events stream for the given list of values.

Parameters
Return type

Generator

write_tokens(value, var, namespace)[source]

Produce an events stream for the given tokens list or list of tokens lists.

Parameters
Return type

Generator

write_mixed_content(values, var, namespace)[source]

Produce an events stream for the given list of mixed type objects.

Parameters
Return type

Generator

write_any_type(value, var, namespace)[source]

Produce an events stream for the given object.

The object can be a dataclass or a generic object or any other simple type.

Parameters
Return type

Generator

write_wildcard(value, var, namespace)[source]

Produce an element events stream for the given generic object.

Parameters
Return type

Generator

xsi_type(var, value, namespace)[source]

Get xsi:type if the given value is a derived instance.

Parameters
Return type

Optional[QName]

write_elements(value, var, namespace)[source]

Produce an events stream from compound elements field.

Parameters
Return type

Generator

write_choice(value, var, namespace)[source]

Produce an events stream for the given value of a compound elements field.

The value can be anything as long as we can match the qualified name or its type to a choice.

Parameters
Return type

Generator

classmethod write_element(value, var, namespace)[source]

Produce an element events stream for the given simple type value.

Parameters
Return type

Generator

classmethod write_data(value, var, namespace)[source]

Produce a data event for the given value.

Parameters
Return type

Generator

classmethod next_value(obj, meta)[source]

Return the non attribute variables with their object values in the correct order according to their definition and the sequential metadata property.

Sequential fields need to be rendered together in parallel order eg: <a1/><a2/><a1/><a/2></a1>

Parameters
classmethod next_attribute(obj, meta, xsi_nil, xsi_type)[source]

Return the attribute variables with their object values.

Ignores None values and empty lists. Optionally include the xsi properties type and nil.

Parameters
Return type

Generator

classmethod encode(value, var)[source]

Encode values for xml serialization.

Converts values to strings. QName instances is an exception, those values need to wait until the XmlWriter assigns prefixes to namespaces per element node. Enums and Tokens may contain QName(s) so they also get a special treatment.

We can’t do all the conversions in the writer because we would need to carry the xml vars inside the writer. Instead of that we do the easy encoding here and leave the qualified names for later.

Parameters
Return type

Any