Skip to content

Latest commit

 

History

History
64 lines (53 loc) · 2.7 KB

List.md

File metadata and controls

64 lines (53 loc) · 2.7 KB
title description published date tags editor dateCreated
List
true
2022-12-11 17:47:38 UTC
markdown
2022-09-18 05:01:09 UTC

Managed List Plugins

Managed list plugins are a class of plugin which work as input plugins, but can also be used in other contexts to edit the list or act certain way based on the list content.

Operating with lists

Plugin name Description
list_add Use this plugin to add accepted entries to a list plugin.
list_remove Use this plugin to remove accepted entries from a list plugin.
list_match Use this plugin to filter entries based on the contents of a list.
list_clear Use this plugin to clear all items from a list plugin.
Plugin name Description
couchpotato_list Use or add entries from one of your couchpotato watch list.
emby_list Allows list management in emby server
entry_list Use or add entries to a custom made entry list.
imdb_list Use or add entries from one of your IMDB lists.
movie_list Use or add entries to a custom made movie list.
pending_list Manually approve entries to be accepted
plex_watchlist Use or add entries from plex
radarr_list Use or add entries from Radarr.
regexp_list Use or add entries to a custom made regexp list.
sonarr_list Use or add entries from Sonarr shows.
subtitle_list Use or add entries to a custom made subtitle list.
thetvdb_list Use or add entries from your TheTVDB favorites list.
trakt_list Use or add entries from one of your trakt.tv lists.

List action advanced usage

All of the aforementioned list plugins take a list of list plugin in their schema, so all operation can be used on multiple plugins at the same time:

trakt_list:
  username: traktusername
  list: watchlist
  type: movies
accept_all: yes
list_add:
  - trakt_list:
      username: a_different_username
      list: watchlist
      type: movies
  - imdb_list:
      login: '[email protected]'
      password: flexget
      list: watchlist

Developers

Want to create or convert an existing plugin to a managed list plugin? Read the docs.