intelmq.bots.parsers.cleanmx package

Submodules

intelmq.bots.parsers.cleanmx.parser module

intelmq.bots.parsers.cleanmx.parser.BOT

alias of CleanMXParserBot

class intelmq.bots.parsers.cleanmx.parser.CleanMXParserBot(*args, **kwargs)

Bases: ParserBot

Parse the CleanMX feeds

get_mapping_and_type(url)
parse(report)

A generator yielding the single elements of the data.

Comments, headers etc. can be processed here. Data needed by self.parse_line can be saved in self.tempdata (list).

Default parser yields stripped lines. Override for your use or use an existing parser, e.g.:

parse = ParserBot.parse_csv
You should do that for recovering lines too.

recover_line = ParserBot.recover_line_csv

parse_line(entry_str, report)

A generator which can yield one or more messages contained in line.

Report has the full message, thus you can access some metadata. Override for your use.

Module contents