flexget.components.managed_lists.lists.movie_list.movie_list module#

class flexget.components.managed_lists.lists.movie_list.movie_list.MovieList(**kwargs)[source]#

Bases: MutableSet

static _parse_title(entry)[source]#
_db_list(session)[source]#
_find_entry(**kwargs)#
_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(**kwargs)#
_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.

class flexget.components.managed_lists.lists.movie_list.movie_list.MovieListBase[source]#

Bases: object

Class that contains helper methods for movie list as well as plugins that use it, such as API and CLI.

property supported_ids#
class flexget.components.managed_lists.lists.movie_list.movie_list.PluginMovieList[source]#

Bases: object

Remove all accepted elements from your trakt.tv watchlist/library/seen or custom list.

static get_list(config)[source]#
on_task_input(task, config)[source]#
schema = {'oneOf': [{'type': 'string'}, {'additionalProperties': False, 'properties': {'list_name': {'type': 'string'}, 'strip_year': {'type': 'boolean'}}, 'required': ['list_name'], 'type': 'object'}]}#
flexget.components.managed_lists.lists.movie_list.movie_list.register_plugin()[source]#