• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

lib/IMDB/H04-Jan-2013-2,7671,351

t/H03-May-2022-354277

ChangeLogH A D04-Jan-201311.4 KiB304252

LICENSEH A D15-Mar-201220.1 KiB384309

MANIFESTH A D04-Jan-2013625 2726

MANIFEST.SKIPH A D15-Mar-201236 65

META.jsonH A D04-Jan-20131.2 KiB5049

META.ymlH A D04-Jan-2013668 3130

Makefile.PLH A D04-Jan-20131.5 KiB3929

READMEH A D15-Mar-20121.2 KiB5835

TodoH A D15-Mar-2012404 96

README

1IMDB-Film
2======================
3
4IMDB::Film is OO Perl interface to the database of films
5IMDB (www.imdb.com). It allows to retrieve information
6about movies by its IMDB code or title. Also, there is a
7possibility to get information about IMDB persons (actors,
8actresses, directors etc) by their name of code.
9
10For more details please read POD of that module.
11
12INSTALLATION
13
14To install this module type the following:
15
16   	perl Makefile.PL
17   	make
18   	make test
19   	make install
20
21To install this module in the specific path use:
22
23	perl Makefile.PL PREFIX=/path/to/your/lib
24
25To install the module in your home directory use that command:
26
27	perl Makefile.PL PREFIX=YOU_HOME/path/to/your/lib
28
29Note: you don't need to have a root privileges to do that!
30
31Also, you can use CPAN shell:
32
33	> perl -MCPAN -e shell
34	cpan> install IMDB::Film
35
36or use command 'cpan':
37
38	> cpan install IMDB::Film
39
40DEPENDENCIES
41
42This module requires these other modules and libraries:
43
44  	HTML::TokeParser
45	LWP::Simple
46    Cache::Cache
47
48AUTHOR
49
50Michael Stepanov (stepanov.michael@gmail.com)
51
52COPYRIGHT AND LICENCE
53
54Copyright (C) 2004 - 2010 by Michael Stepanov.
55
56This library is free software; you can redistribute it and/or modify
57it under the same terms as Perl itself.
58