line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package WWW::Scraper::ISBN::Amazon_Driver; |
2
|
|
|
|
|
|
|
|
3
|
4
|
|
|
4
|
|
46863
|
use strict; |
|
4
|
|
|
|
|
10
|
|
|
4
|
|
|
|
|
166
|
|
4
|
4
|
|
|
4
|
|
23
|
use warnings; |
|
4
|
|
|
|
|
8
|
|
|
4
|
|
|
|
|
189
|
|
5
|
|
|
|
|
|
|
|
6
|
4
|
|
|
4
|
|
26
|
use vars qw($VERSION); |
|
4
|
|
|
|
|
11
|
|
|
4
|
|
|
|
|
331
|
|
7
|
|
|
|
|
|
|
$VERSION = '0.40'; |
8
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
#-------------------------------------------------------------------------- |
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
=head1 NAME |
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
WWW::Scraper::ISBN::Amazon_Driver - A collection of search drivers for Amazon. |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
=head1 SYNOPSIS |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
See parent class documentation (L) |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
=head1 DESCRIPTION |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
Searches for book information from the UK & US Amazon online catalogs. |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
For specific usability of the drivers, please see the documentation for the |
24
|
|
|
|
|
|
|
respective driver you require. |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
=head1 REQUIRES |
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
Requires the following modules be installed: |
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
L, |
31
|
|
|
|
|
|
|
L, |
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
=head1 SEE ALSO |
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
L, |
36
|
|
|
|
|
|
|
L, |
37
|
|
|
|
|
|
|
L |
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
=head1 BUGS, PATCHES & FIXES |
40
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
There are no known bugs at the time of this release. However, if you spot a |
42
|
|
|
|
|
|
|
bug or are experiencing difficulties that are not explained within the POD |
43
|
|
|
|
|
|
|
documentation, please send an email to barbie@cpan.org or submit a bug to the |
44
|
|
|
|
|
|
|
RT system (http://rt.cpan.org/Public/Dist/Display.html?Name=WWW-Scraper-ISBN-Amazon_Driver). |
45
|
|
|
|
|
|
|
However, it would help greatly if you are able to pinpoint problems or even |
46
|
|
|
|
|
|
|
supply a patch. |
47
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
Fixes are dependent upon their severity and my availability. Should a fix not |
49
|
|
|
|
|
|
|
be forthcoming, please feel free to (politely) remind me. |
50
|
|
|
|
|
|
|
|
51
|
|
|
|
|
|
|
=head1 AUTHOR |
52
|
|
|
|
|
|
|
|
53
|
|
|
|
|
|
|
Barbie, |
54
|
|
|
|
|
|
|
for Miss Barbell Productions . |
55
|
|
|
|
|
|
|
|
56
|
|
|
|
|
|
|
=head1 COPYRIGHT & LICENSE |
57
|
|
|
|
|
|
|
|
58
|
|
|
|
|
|
|
Copyright (C) 2004-2014 Barbie for Miss Barbell Productions |
59
|
|
|
|
|
|
|
|
60
|
|
|
|
|
|
|
This distribution is free software; you can redistribute it and/or |
61
|
|
|
|
|
|
|
modify it under the Artistic Licence v2. |
62
|
|
|
|
|
|
|
|
63
|
|
|
|
|
|
|
=cut |