TVrank
is a library and command-line utility written in Rust for querying and ranking
information about movies and series. It can be used to query a single title or scan media
directories.
Currently, TVrank
only supports IMDB's TSV dumps which it automatically downloads,
caches and periodically updates. More work is required to be able to support and cache
live-query services like TMDB and TVDB.
The in-memory database is reasonably fast and its on-disk persistent cache format reasonably efficient.
The library's documentation is badly lacking but there is an example on how to use it.
For now, the command-line utility of TVrank
works well and fast enough to be usable
e.g. instead of searching for a title through DuckDuckGo
using something like !imdb TITLE
. In case you still want to see the IMDB page for a
title, TVrank
will print out a direct link for each search result for direct access from
the terminal.
Note that TVrank
depends on the flate2
crate for decompression of IMDB TSV
dumps. flate2
is extremely slow when built in debug mode, so it is recommended to always
run TVrank
in release mode unless there are good reasons not to. By default, release
mode is built with debugging information enabled for convenience during development.
For information on how to use the library, see below.
The TVrank
command-line interface has a few modes accessible through the use of
sub-commands:
title "KEYWORDS..."
to search by keywords.title "KEYWORDS... (YYYY)"
to search by keywords in a specific year.title "TITLE (YYYY)" --exact
to search for and exact title in a specific year.title "TITLE" --exact
to search for an exact title (-e
also means exact).movies-dir
andseries-dir
to make batch queries based on directory scans.
To search for a specific title:
$ tvrank title "the great gatsby (2013)" -e
To search for all titles containing "the", "great" and "gatsby" in the year 2013:
$ tvrank title "the great gatsby (2013)"
To search based on keywords:
$ tvrank title "the great gatsby"
To search based on an exact title:
$ tvrank title "the great gatsby" -e
To query a series directory:
$ tvrank series-dir <MEDIA_DIR>
Also, by default TVrank
will sort by rating, year and title. To instead sort by year,
rating and title, --sort-by-year
can be passed before any sub-command:
$ tvrank --sort-by-year title "house of cards"
You can also limit the output of movies and series to the top N entries:
$ tvrank title "the great gatsby" --top 2
You can change the output format to json
or yaml
:
$ tvrank title "the great gatsby" --output json
To print out more information about what the application is doing, use -v
before any
sub-command. Multiple occurrences of -v
on the command-line will increase the verbosity
level:
$ tvrank -vvv --sort-by-year title "city of god"
The following options can come before or after the sub-command. The latter have precedence over the former.
--verbose
--sort-by-year
--force-update
--top <N>
--color
--output [table|json|yaml]
To find help, see the help
sub-command:
$ tvrank help
$ tvrank help title
$ tvrank help series-dir
$ tvrank help movies-dir
Please note that the screencast is slightly outdated. Please use the sub-commands described above instead of what is shown in the screencast.
By default, TVrank
displays some of the content with color. However, it supports the
NO_COLOR
environment variable. When NO_COLOR
is set, TVrank
will not use color in
its output. This can also be overridden by passing the --color
argument on the
command-line:
NO_COLOR=1 tvrank title "the great gatsby" # Without colors
NO_COLOR=1 tvrank title "the great gatsby" --color # With colors
It is recommended to use the pre-built releases.
Installing TVrank
from this repository's sources requires Cargo, a Rust compiler and a
toolchain to be available. Once those are ready and the repository's contents are cloned,
a simple build and install through cargo should suffice:
$ git clone https://github.com/fredmorcos/tvrank
$ cd tvrank
$ cargo install --profile production --path .
Installing TVrank
from Crates.io also requires Cargo, a Rust
compiler and a toolchain to be available. Once those are ready, a simple build and install
using cargo should suffice:
$ cargo install --profile production tvrank`
Add the dependency to your Cargo.toml
:
[dependencies]
tvrank = "0.7"
Or, using cargo add
:
$ cargo add tvrank
Include the Imdb
type:
use tvrank::imdb::{Imdb, ImdbQuery};
Create a directory for the cache using the tempfile
crate then create the database
service. The closure passed to the service constructor is a callback for progress updates
and is a FnMut
to be able to e.g. mutate a progress bar object.
let cache_dir = tempfile::Builder::new().prefix("tvrank_").tempdir()?;
let imdb = Imdb::new(cache_dir.path(), false, &mut |_| {})?;
Afterwards, one can query the database using either imdb.by_id(...)
,
imdb.by_title(...)
, imdb.by_title_and_year(...)
or imdb.by_keywords(...)
, and print
out some information about the results.
let title = "city of god";
let year = 2002;
println!("Matches for {} and {:?}:", title, year);
for title in imdb.by_title_and_year(title, year, ImdbQuery::Movies)? {
let id = title.title_id();
println!("ID: {}", id);
println!("Primary name: {}", title.primary_title());
if let Some(original_title) = title.original_title() {
println!("Original name: {}", original_title);
} else {
println!("Original name: N/A");
}
if let Some((rating, votes)) = title.rating() {
println!("Rating: {}/100 ({} votes)", rating, votes);
} else {
println!("Rating: N/A");
}
if let Some(runtime) = title.runtime() {
println!("Runtime: {}", humantime::format_duration(runtime));
} else {
println!("Runtime: N/A");
}
println!("Genres: {}", title.genres());
println!("--");
}
See the query
example under the examples/
directory for a fully-functioning version of
the above.