flexget.components.parsing.plugin_parsing module#
- class flexget.components.parsing.plugin_parsing.PluginParsing[source]#
Bases:
objectProvide parsing framework.
- on_task_abort(task, config)#
- parse_movie(data, **kwargs)[source]#
Use the selected movie parser to parse movie information from data.
- Parameters:
data – The raw string to parse information from
- Returns:
An object containing the parsed information. The valid attribute will be set depending on success.
- parse_series(data, name=None, **kwargs)[source]#
Use the selected series parser to parse series information from data.
- Parameters:
data – The raw string to parse information from.
name – The series name to parse data for. If not supplied, parser will attempt to guess series name automatically from data.
- Returns:
An object containing the parsed information. The valid attribute will be set depending on success.
- property schema#