load method

On this page

load

Sets the source document file name.

def load(self, file_name):
    ...
Parameter Type Description
file_name str Source document.

load

Set source documents array.

def load(self, file_name):
    ...
Parameter Type Description
file_name list[str] Set of source documents.

load

Set source document stream.

def load(self, document_stream_provider):
    ...
Parameter Type Description
document_stream_provider Func[io.RawIOBase] Source document stream provider
Raises Description
InvalidConverterSettingsException If validation of converter settings fails this exception will be thrown

load

Set source document streams array.

def load(self, document_stream_provider):
    ...
Parameter Type Description
document_stream_provider Func[list[io.RawIOBase]] Source document streams provider.
Raises Description
InvalidConverterSettingsException If validation of converter settings fails.

See Also

On this page