Make patched_cast actually work
[app-imdbtop.git] / imdbtop
CommitLineData
76ed8698
MG
1#!/usr/bin/perl
2use v5.14;
3use warnings;
4
5use App::IMDBtop;
6
7App::IMDBtop->run;
8
9__END__
10
11=encoding utf-8
12
13=head1 NAME
14
15imdbtop - list actors that are popular in your movie collection
16
17=head1 SYNOPSIS
18
19 # List all actors in the given movies, sorted by number of (given)
20 # movies they starred in
21 imdbtop < list_of_movie_ids
22
23 # As above, but only lists top 20 actors
24 imdbtop -n 20 < list_of_movie_ids
25
26 # As above, but only lists actors that appeared in at least 5 of the
27 # given movies
28 imdbtop -m 5 a_list_of_movie_ids another_list
29
30=head1 DESCRIPTION
31
32This script solves a simple problem: you have a list of movies you've
33watched (in the form of IMDB IDs), and you are looking for the actors
34that have starred most often in these movies.
35
36=head1 OPTIONS
37
38=over
39
40=item B<-n> I<count>, B<--nr> I<count>
41
42Only print the top I<count> actors.
43
44=item B<-m> I<min>, B<--min-count> I<min>
45
46Do not print actors that appear in less than I<min> of the given
47movies.
48
49=item B<-c>, B<--cache>, B<--no-cache>
50
51If B<--cache>, stores the content of retrieved pages in a cache.
52Defaults to B<--no-cache>.
53
54=item B<--cache-root> F<path>
55
56Location where cached pages are stored. Defaults to F</tmp>.
57
58=back
59
60=head1 SEE ALSO
61
62L<http://imdb.com>
63
64=head1 AUTHOR
65
66Marius Gavrilescu, E<lt>marius@ieval.roE<gt>
67
68=head1 COPYRIGHT AND LICENSE
69
70Copyright (C) 2016 by Marius Gavrilescu
71
72This library is free software; you can redistribute it and/or modify
73it under the same terms as Perl itself, either Perl version 5.24.0 or,
74at your option, any later version of Perl 5 you may have available.
75b
76
77=cut
This page took 0.014124 seconds and 4 git commands to generate.