pending-list
View and manage pending lists.
Sub-command | Option | Description |
---|---|---|
all * |
Shows all existing entry lists | |
list * |
List entries from a list | |
positional: | ||
<list_name> |
Name of the list to display | |
show |
Show entry fields | |
positional: | ||
<list_name> |
Name of the list to display an entry from | |
<entry> |
Entry title or ID from that list | |
add |
Add an entry to a list | |
list_name |
Name of the list to add to; if the list does not exist, it will be created | |
positional: | ||
<entry_title> |
Title of the entry | |
<original_url> |
URL of the entry | |
optional: | ||
--attributes <entry_field=value> [<entry_field=value> ...] |
Can be a string or a list of strings with the format imdb_id=XXX, tmdb_id=XXX, etc | |
--approved |
Add an entry as already approved | |
approve |
Mark an entry as approved | |
reject |
Reject an apprvoed entry | |
del |
Remove an entry from a list using its title or ID | |
positional: | ||
<list_name> |
Name of the list to remove from | |
<entry> |
Entry title or ID from that list | |
purge |
Removes an entire list with all of its entries; use this with caution | |
positional: | ||
<list_name> |
Name of the list to remove | |
* supports table-styles |
$ flexget pending-list all
$ flexget pending-list list <list_name>
$ flexget pending-list show <list_name> <entry>
Using a title and original URL is require. You can also add additional identifiers in the following format:
$ flexget pending-list add <list_name> <entry_title> <original_url> --attributes imdb_id=tt1234556 tmdb_id=1234 --approved
If the given entry list does not exist it will be created.
If the entry with the title exists on that list, its entire list of attributes will be replaced by the given list of attributes (or removed altogether if such a list was not given).
$ flexget pending-list del <list_name> <entry>
$ flexget pending-list purge <list_name>
$ flexget pending-list approve <list_name> <entry TITLE or ID>
$ felxget pending-list reject <list_name> <entry TITLE or ID>