Skip to content

Latest commit

 

History

History
90 lines (76 loc) · 2.81 KB

pending-list.md

File metadata and controls

90 lines (76 loc) · 2.81 KB
title description published date tags editor dateCreated
pending-list
true
2022-09-18 05:25:10 UTC
markdown
2022-09-18 04:54:05 UTC

CLI > pending-list

View and manage pending lists.

Sub-commands

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

Examples

Return all pending lists names

$ flexget pending-list all

List all entries from an pending list

$ flexget pending-list list <list_name>

Show details about a specific entry

$ flexget pending-list show <list_name> <entry>

Add or update an entry on an pending list and mark it as approved.

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).

Removing an entry from an pending list

$ flexget pending-list del <list_name> <entry>

Clearing an entire pending list

$ flexget pending-list purge <list_name>

Approving an entry on a pending list

$ flexget pending-list approve <list_name> <entry TITLE or ID>

Rejecting an entry from a pending list

$ felxget pending-list reject <list_name> <entry TITLE or ID>