open_parser method

open_parser

Creates the Parser object for the item content.

Returns

An instance of Parser class of the item content.

def open_parser(self):
    ...

open_parser

Creates the Parser object for the item content with LoadOptions.

Returns

An instance of Parser class of the item content.

def open_parser(self, load_options):
    ...
Parameter Type Description
load_options groupdocs.parser.options.LoadOptions The options to open the item content.

open_parser

Creates the Parser object for the item content with LoadOptions and ParserSettings.

Returns

An instance of Parser class of the item content.

def open_parser(self, load_options, parser_settings):
    ...
Parameter Type Description
load_options groupdocs.parser.options.LoadOptions The options to open the item content.
parser_settings groupdocs.parser.options.ParserSettings The parser settings which are used to customize data extraction.

See Also