Skip to content

Latest commit

 

History

History
82 lines (65 loc) · 2.58 KB

movie-list.md

File metadata and controls

82 lines (65 loc) · 2.58 KB
title description published date tags editor dateCreated
movie-list
true
2022-12-11 20:45:25 UTC
markdown
2022-09-18 04:54:02 UTC

CLI > movie-list

View and manage movie lists.

Sub-commands

Sub-command Option Description
all* Shows all existing movie lists
list* List movies from a list
positional:
<list_name> Name of the list to display
add Add a movie to a list
<list_name> Name of the list to add to
positional:
<movie_title> Title of the movie
optional:
-i <identifiers> [<identifiers> ...], --identifiers <identifiers> [<identifiers> ...] Can be a string or a list of string with the format imdb_id=XXX, tmdb_id=XXX, etc
del Remove a movie from a list using its title
positional:
<list_name> Name of the list to delete from
<movie_title> Title of the movie
purge Removes an entire list with all of its movies; use this with caution
positional:
<list_name> Name of the list to remove
Includes/TableStylesDiv{.include}

Examples

For detailed instruction about these CLI commands:

$ flexget movie-list -h

If a list name isn't specified, the list name movies will be used by default. This is true for all actions. {.is-info}

Return all movie lists names

$ flexget movie-list all

List movies from movie lists

$ flexget movie-list list <list_name>

Add or update a movie on a movie list

Using a title is required. You can also add additional identifiers in the following format:

$ flexget movie-list add <list_name> <move_title> -i imdb_id=tt1234556 tmdb_id=1234

Movie identifiers should correlate to the list mentioned at the top, or they'll be ignored.

If the specified movie list does not exist, it will be created.

If the movie with the title exists on that list, its entire list of identifiers will be replaced by the given list of identifiers (or removed altogether if such a list was not given).

Movies will be looked up from IMDB on add, with a fallback to TMDB. If both of these lookups fail, the movie will not be added to the list.

If a movie is added with identifiers, those will take precedence in the lookup before using its title.

Removing a movie from movie list

$ flexget movie-list del <list_name> <movie_title>

Clearing an entire movie list

$ flexget movie-list purge <list_name>