An easy-to-use commandline tool to easily look up the IMDb ID of a movie given its name
It's built for both easy interactive use and scripting capabilities
Because certain sites support searching using these IMDb IDs and it's really useful as an unambiguous identifier
You need to have Rust installed on your system, then run the following:
shell
cargo install imdb-id
``` USAGE: imdb-id [FLAGS] [OPTIONS] [--] [search_term]...
ARGS:
FLAGS: -h, --help Prints help information
-n, --non-interactive
Disables interactive features (always picks the first result)
-V, --version
Prints version information
OPTIONS:
-g, --genre
-y, --year <filter_year>
Filters results to a specific year, or range of years
Examples: 2021, 1990-2000, 2000- (2000 onwards), -2000 (before 2000)
-r, --results <number_of_results>
The maximum number of results to show from IMDb
```