class documentation

class MarshalItemExporter(BaseItemExporter):

View In Hierarchy

Exports items in a Python-specific binary format (see marshal).
Parameters
fileThe file-like object to use for exporting the data. Its write method should accept bytes (a disk file opened in binary mode, a ~io.BytesIO object, etc)
Method __init__ Undocumented
Method export​_item Undocumented
Instance Variable file Undocumented

Inherited from BaseItemExporter:

Method finish​_exporting Undocumented
Method serialize​_field Undocumented
Method start​_exporting Undocumented
Instance Variable encoding Undocumented
Instance Variable export​_empty​_fields Undocumented
Instance Variable fields​_to​_export Undocumented
Instance Variable indent Undocumented
Method ​_configure Configure the exporter by poping 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):
def export_item(self, item):
file =

Undocumented