Parsers ======= The first step of working with Parsers is to implement all the parsers you need based on one of three provided base classes: :class:`~.PDFBaseParser`, :class:`~.EmailBaseParser` and :class:`~.FileBaseParser`. The second step is to create an instance of :class:`~.ParserHandler`, which automatically loads all the parsers based on provided input arguments. And finally, to parse our input data, we can call :meth:`~.ParserHandler.parse` method, which will select the correct parser and parse the input data based on provided Parsing Strategy. See parameter ``parse_strategy`` in :class:`~.ParserHandler`. .. automodule:: aiviro.modules.parser :members: PDFBaseParser, EmailBaseParser, FileBaseParser, ParserHandler, BaseParsingStrategy, NaiveParsingStrategy, AutoSelectParsingStrategy, ParserInvalidCheck, ParserNotFound, ParserProcessingError