flexget.components.managed_lists.lists.pending_list.pending_list module#

class flexget.components.managed_lists.lists.pending_list.pending_list.PendingList[source]#

Bases: object

static get_list(config)[source]#
on_task_input(task, config)[source]#
schema = {'oneOf': [{'type': 'string'}, {'additionalProperties': False, 'properties': {'include': {'default': 'approved', 'enum': ['pending', 'approved', 'all'], 'type': 'string'}, 'list_name': {'type': 'string'}}, 'required': ['list_name'], 'type': 'object'}]}#
class flexget.components.managed_lists.lists.pending_list.pending_list.PendingListSet(config)[source]#

Bases: MutableSet

_db_list(session)[source]#
_entry_query(session, entry, approved=None)[source]#
_from_iterable(it)[source]#

Construct an instance of the class from any iterable input.

Must override this method if the class constructor signature does not accept an iterable for an input.

add(entry)[source]#

Add an element.

discard(entry)[source]#

Remove an element. Do not raise an exception if absent.

get(entry)[source]#
_abc_impl = <_abc._abc_data object>#
property immutable#
property online#

Set the online status of the plugin.

Online plugin should be treated differently in certain situations, like test mode

flexget.components.managed_lists.lists.pending_list.pending_list.register_plugin()[source]#