class documentation

class XmlItemExporter(BaseItemExporter): (source)

View In Hierarchy

Undocumented

Method __init__ Undocumented
Method export_item Undocumented
Method finish_exporting Undocumented
Method start_exporting Undocumented
Instance Variable encoding Undocumented
Instance Variable item_element Undocumented
Instance Variable root_element Undocumented
Instance Variable xg Undocumented
Method _beautify_indent Undocumented
Method _beautify_newline Undocumented
Method _export_xml_field Undocumented

Inherited from BaseItemExporter:

Method serialize_field Undocumented
Instance Variable export_empty_fields Undocumented
Instance Variable fields_to_export Undocumented
Instance Variable indent Undocumented
Method _configure Configure the exporter by popping options from the ``options`` dict. If dont_fail is set, it won't raise an exception on unexpected options (useful for using with keyword arguments in subclasses ``__init__`` methods)...
Method _get_serialized_fields Return the fields to export as an iterable of tuples (name, serialized_value)
Instance Variable _kwargs Undocumented
def __init__(self, file, **kwargs): (source)
def export_item(self, item): (source)
def finish_exporting(self): (source)
def start_exporting(self): (source)
item_element = (source)

Undocumented

root_element = (source)

Undocumented

Undocumented

def _beautify_indent(self, depth=1): (source)

Undocumented

def _beautify_newline(self, new_item=False): (source)

Undocumented

def _export_xml_field(self, name, serialized_value, depth): (source)

Undocumented