This is part of managed list plugin system.
Stores a copy of any entry that was added to it, and can be used in a variety of ways.
See managed_list how to use lists in general.
entry_list: <NAME>
task:
get-movies:
priority: 1
rss: ...
accept_all: yes
list_add:
- entry_list: downloaded movies
download: ...
email-report:
priority: 2
entry_list: downloaded movies
accept_all: yes
notify:
task:
via:
email: ...
First task get-movies
will add all accepted entries to an entry_list
with the name downloaded movies
. It then later be used as an input itself in a email-report
task. Effectively this can replace the digest plugin.
You can use entry_list
as a search plugin to use with discover:
tasks:
discover-series:
discover:
release_estimations: ignore
what:
- next_series_episodes: yes
from:
- entry_list: series list
series:
- foo:
begin: s01e01
Please see commandline documentation
entry_list
plugin has full JSON API support. See API post for details.