Net::Amazon - Framework for accessing amazon.com via REST
use Net::Amazon;
my $ua = Net::Amazon->new(token => 'YOUR_AMZN_TOKEN');
# Get a request object my $response = $ua->search(asin => '0201360683');
if($response->is_success()) { print $response->as_string(), "\n"; } else { print "Error: ", $response->message(), "\n"; }
Net::Amazon provides an object-oriented interface to amazon.com's REST interface. This way it's possible to create applications using Amazon's vast amount of data via a functional interface, without having to worry about the underlying communication mechanism.
Net::Amazon
works very much like LWP
: First you define a useragent
like
my $ua = Net::Amazon->new( token => 'YOUR_AMZN_TOKEN', max_pages => 3, );
which you pass your personal amazon developer's token (can be obtained from http://amazon.com/soap) and (optionally) the maximum number of result pages the agent is going to request from Amazon in case all results don't fit on a single page (typically holding 20 items). Note that each new page requires a minimum delay of 1 second to comply with Amazon's one-query-per-second policy.
According to the different search methods on Amazon, there's a bunch
of different request types in Net::Amazon
. The user agent's
convenience method search()
triggers different request objects,
depending on which parameters you pass to it:
$ua->search(asin => "0201360683")
asin
parameter has Net::Amazon search for an item with the
specified ASIN. If the specified value is an arrayref instead of a single
scalar, like in
$ua->search(asin => ["0201360683", "0596005083"])
then a search for multiple ASINs is performed, returning a list of results.
$ua->search(actor => "Adam Sandler")
actor
parameter has the user agent search for items created by
the specified actor. Can return many results.
$ua->search(artist => "Rolling Stones")
artist
parameter has the user agent search for items created by
the specified artist. Can return many results.
$ua->search(author => "Robert Jordan")
author
parameter has the user agent search for items created by
the specified author. Can return many results.
$ua->search(browsenode=>"4025", mode=>"books" [, keywords=>"perl"])
$ua->search(exchange => 'Y04Y3424291Y2398445')
$ua->search(keyword => "perl xml", mode => "books")
keyword
and mode
.
Can return many results.
$ua->search(wishlist => "1XL5DWOUFMFVJ")
$ua->search(upc => "075596278324", mode => "music")
upc
.
mode
has to be set to music
. Returns at most one result.
$ua->search(isbn => "0439784549")
isbn
. Returns at most one result. When searching non-US locales use the
13-digit ISBN.
$ua->search(similar => "0201360683")
$ua->search(power => "subject: perl and author: schwartz", mode => "books")
$ua->search(manufacturer => "Disney")
$ua->search(musiclabel => "Arista")
$ua->search(publisher => "o'reilly")
$ua->search(blended => "Perl")
$ua->search(seller => "A2GXAGU54VOP7")
$ua->search(textstream => "Blah blah Rolling Stones blah blah")
The user agent's search
method returns a response object, which can be
checked for success or failure:
if($resp->is_success()) { print $resp->as_string(); } else { print "Error: ", $resp->message(), "\n"; }
In case the request for an item search
succeeds, the response contains one or more
Amazon 'properties', as it calls the products found.
All matches can be retrieved from the Response
object using it's properties()
method.
In case the request fails, the response contains one or more
error messages. The response object's message()
method will
return it (or them) as a single string, while messages()
(notice
the plural) will
return a reference to an array of message strings.
Response objects always have the methods
is_success()
,
is_error()
,
message()
,
total_results()
,
as_string()
and
properties()
available.
total_results()
returns the total number of results the search
yielded.
properties()
returns one or more Net::Amazon::Property
objects of type
Net::Amazon::Property
(or one of its subclasses like
Net::Amazon::Property::Book
, Net::Amazon::Property::Music
or Net::Amazon::Property::DVD), each
of which features accessors named after the attributes of the product found
in Amazon's database:
for ($resp->properties) { print $_->Asin(), " ", $_->OurPrice(), "\n"; }
In scalar context, properties()
just returns the first
Net::Amazon::Property
object found.
Commonly available accessors to Net::Amazon::Property
objects are
OurPrice()
,
ImageUrlLarge()
,
ImageUrlMedium()
,
ImageUrlSmall()
,
ReleaseDate()
,
Catalog()
,
Asin()
,
url()
,
Manufacturer()
,
UsedPrice()
,
ListPrice()
,
ProductName()
,
Availability()
,
SalesRank()
,
CollectiblePrice()
,
CollectibleCount()
,
NumberOfOfferings()
,
UsedCount()
,
ThirdPartyNewPrice()
,
ThirdPartyNewCount()
,
similar_asins()
.
For details, check the Net::Amazon::Property manpage.
Also, the specialized classes Net::Amazon::Property::Book
and
Net::Amazon::Property::Music
feature convenience methods like
authors()
(returning the list of authors of a book) or
album()
for CDs, returning the album title.
Customer reviews:
Every property features a review_set()
method which returns a
Net::Amazon::Attribute::ReviewSet
object, which in turn offers
a list of Net::Amazon::Attribute::Review
objects. Check the respective
man pages for details on what's available.
Net::Amazon
's search()
method is just a convenient way to
create different kinds of request objects behind the scenes and
trigger them to send requests to Amazon.
Depending on the parameters fed to the search
method, Net::Amazon
will
determine the kind of search requested and create one of the following
request objects:
asin
.
Returns at most one result.
artist
.
Can return many results.
browsenode
(must be numeric) and mode
. Can return many results.
keyword
and mode
.
Can return many results.
upc
.
mode
has to be set to music
. Returns at most one result.
power
.
manufacturer
. With the change to AWS4, manufacturer is no longer used to
search for publishers. To search via publisher use
Net::Amazon::Request::Publisher.
publisher
.
properties()
method
on the response, use result()
instead, which returns a
the Net::Amazon::Result::Seller manpage object. Check the manpage for details.
result()
instead, which will return a single
the Net::Amazon::Result::Seller::Listing manpage item.
Check the manpage for details on what attributes are available there.
Check the respective man pages for details on these request objects. Request objects are typically created like this (with a Keyword query as an example):
my $req = Net::Amazon::Request::Keyword->new( keyword => 'perl', mode => 'books', );
and are handed over to the user agent like that:
# Response is of type Net::Amazon::Response::ASIN my $resp = $ua->request($req);
The convenient search()
method just does these two steps in one.
$token
is the value of
the mandatory Amazon developer's token, which can be obtained from
http://amazon.com/soap.
Additional optional parameters:
max_pages => $max_pages
strict
mode to comply with Amazon's terms
of service. This will impact performance if you perform a search
returning many pages of results.
strict => 1
Net::Amazon
complies with Amazon's terms of service
by limiting the number of outgoing requests to 1 per second. Defaults
to 1
, enabling rate limiting as defined via rate_limit
.
rate_limit => $reqs_per_sec
$reqs_per_sec
requests per second if
rate limiting has been enabled with strict
(see above).
Defaults to 1
, limiting the number of outgoing requests to
1 per second.
$resp = $ua->request($request)
$request
is of a
Net::Amazon::Request::*
type and $response
will be of the
corresponding Net::Amazon::Response::*
type.
Every search method takes a mode parameter. The mode parameter is used to narrow the search to a specific field. For example, when searching by actor you can search by DVD, DigitalMusic, Merchants, VHS, and Video. By default DVD is used when searching by actor. The modes available are dependent upon the type of search, and locale the search is conducted in.
Determining the modes available to a search type are auto-generated from data published by Amazon on their web site. A man page is available for each type of search. The man page lists the default value if a mode is not specified. A list of mode values is also provided. The man page's name is of the form Net::Amazon::Validate::ItemSearch::<locale>::<type>.
<locale> is one of any ca, de, fr, jp, uk, or us.
<type> is one of Actor, Artist, Author, BrowseNode, Director, Keywords, Manufacturer, MusicLabel, Power, Publisher, TextStream, or UPC.
As of this writing (01/2007), Amazon also offers its web service for the UK, Germany, Canada, France, and Japan. Just pass in
locale => 'ca' locale => 'de' locale => 'fr' locale => 'jp' locale => 'uk' locale => 'us'
respectively to Net::Amazon
's constructor new()
and instead of returning
results sent by the US mothership, it will query the particular country's
catalog and show prices in (gack!) local currencies.
Here's a full-fledged example doing a artist search:
use Net::Amazon; use Net::Amazon::Request::Artist; use Data::Dumper;
die "usage: $0 artist\n(use Zwan as an example)\n" unless defined $ARGV[0];
my $ua = Net::Amazon->new( token => 'YOUR_AMZN_TOKEN', );
my $req = Net::Amazon::Request::Artist->new( artist => $ARGV[0], );
# Response is of type Net::Amazon::Artist::Response my $resp = $ua->request($req);
if($resp->is_success()) { print $resp->as_string, "\n"; } else { print $resp->message(), "\n"; }
And here's one displaying someone's wishlist:
use Net::Amazon; use Net::Amazon::Request::Wishlist;
die "usage: $0 wishlist_id\n" . "(use 1XL5DWOUFMFVJ as an example)\n" unless $ARGV[0];
my $ua = Net::Amazon->new( token => 'YOUR_AMZN_TOKEN', );
my $req = Net::Amazon::Request::Wishlist->new( id => $ARGV[0] );
# Response is of type Net::Amazon::ASIN::Response my $resp = $ua->request($req);
if($resp->is_success()) { print $resp->as_string, "\n"; } else { print $resp->message(), "\n"; }
DETAILS Net::Amazon is based on Amazon Web Services version 4, and uses WSDL version 2007-01-17.
Responses returned by Amazon's web service can be cached locally.
Net::Amazon
's new
method accepts a reference to a Cache
object. Cache
(or one of its companions like Cache::Memory
,
Cache::File
, etc.) can be downloaded from CPAN, please check their
documentation for details. In fact, any other type of cache
implementation will do as well, see the requirements below.
Here's an example utilizing a file cache which causes Net::Amazon
to
cache responses for 30 minutes:
use Cache::File;
my $cache = Cache::File->new( cache_root => '/tmp/mycache', default_expires => '30 min', );
my $ua = Net::Amazon->new( token => 'YOUR_AMZN_TOKEN', cache => $cache, );
Net::Amazon
uses positive caching only, errors won't be cached.
Erroneous requests will be sent to Amazon every time. Positive cache
entries are keyed by the full URL used internally by requests submitted
to Amazon.
Caching isn't limited to the Cache
class. Any cache object which
adheres to the following interface can be used:
# Set a cache value $cache->set($key, $value);
# Return a cached value, 'undef' if it doesn't exist $cache->get($key);
Net::Amazon
uses LWP::UserAgent
under the hood to send
web requests to Amazon's web site. If you're in an environment where
all Web traffic goes through a proxy, there's two ways to configure that.
First, Net::Amazon
picks up proxy settings from environment variables:
export http_proxy=http://proxy.my.place:8080
in the surrounding shell or setting
$ENV{http_proxy} = "http://proxy.my.place:8080";
in your Perl script will route all requests through the specified proxy.
Secondly, you can pass a user agent instance to Net::Amazon's constructor:
use Net::Amazon; use LWP::UserAgent;
my $ua = LWP::UserAgent->new(); my $na = Net::Amazon->new(ua => $ua, token => 'YOUR_AMZN_TOKEN'); # ...
This way, you can configure $ua
up front before Net::Amazon will use it.
If something's going wrong and you want more verbosity, just bump up
Net::Amazon
's logging level. Net::Amazon
comes with Log::Log4perl
statements embedded, which are disabled by default. However, if you initialize
Log::Log4perl
, e.g. like
use Net::Amazon; use Log::Log4perl qw(:easy);
Log::Log4perl->easy_init($DEBUG); my Net::Amazon->new(); # ...
you'll see what's going on behind the scenes, what URLs the module is requesting from Amazon and so forth. Log::Log4perl allows all kinds of fancy stuff, like writing to a file or enabling verbosity in certain parts only -- check http://log4perl.sourceforge.net for details.
Results returned by Amazon can be incomplete or simply wrong at times, due to their ``best effort'' design of the service. This is why the test suite that comes with this module has been changed to perform its test cases against canned data. If you want to perform the tests against the live Amazon servers instead, just set the environment variable
NET_AMAZON_LIVE_TESTS=1
Because nobody wrote it yet. If Net::Amazon doesn't yet support a method advertised on Amazon's web service, you could help us out. Net::Amazon has been designed to be expanded over time, usually it only takes a couple of lines to support a new method, the rest is done via inheritance within Net::Amazon.
Here's the basic plot:
# (Just hit enter when prompted for a password) cvs -d:pserver:anonymous@cvs.net-amazon.sourceforge.net:/cvsroot/net-amazon login cvs -z3 -d:pserver:anonymous@cvs.net-amazon.sourceforge.net:/cvsroot/net-amazon co Net-Amazon
If this doesn't work, just use the latest distribution from net-amazon.sourceforge.net.
Write a new Net::Amazon::Request::XYZ package, start with this template###################################### package Net::Amazon::Request::XYZ; ###################################### use base qw(Net::Amazon::Request);
###################################### sub new { ###################################### my($class, %options) = @_;
if(!exists $options{XYZ_option}) { die "Mandatory parameter 'XYZ_option' not defined"; } my $self = $class->SUPER::new(%options); bless $self, $class; # reconsecrate }
and add documentation. Then, create a new Net::Amazon::Response::XYZ module:
############################## package Net::Amazon::Response; ############################## use base qw(Net::Amazon::Response);
use Net::Amazon::Property;
############################## sub new { ############################## my($class, %options) = @_; my $self = $class->SUPER::new(%options); bless $self, $class; # reconsecrate }
and also add documentation to it. Then, add the line
use Net::Amazon::Request::XYZ;
to Net/Amazon.pm.
And that's it! Again, don't forget the add documentation part. Modules without documentation are of no use to anybody but yourself.
Check out the different Net::Amazon::Request::*
and Net::Amazon::Response modules in the distribution if you need to adapt
your new module to fulfil any special needs, like a different Amazon URL
or a different way to handle the as_string()
method. Also, post
and problems you might encounter to the mailing list, we're gonna help you
out.
If possible, provide a test case for your extension. When finished, send a patch to the mailing list at
net-amazon-devel@lists.sourceforge.net
and if it works, I'll accept it and will work it into the main distribution. Your name will show up in the contributor's list below (unless you tell me otherwise).
There's a number of useful scripts in the distribution's eg/ directory.
Take power
for example, written by Martin Streicher
<martin.streicher@apress.com>: I lets you perform
a power search using Amazon's query language. To search for all books
written by Randal Schwartz about Perl, call this from the command line:
power 'author: schwartz subject: perl'
Note that you need to quote the query string to pass it as one argument
to power
. If a power search returns more results than you want to
process at a time, just limit the number of pages, telling power
which page to start at (-s
) and which one to finish with (-f
).
Here's a search for all books on the subject computer
, limited
to the first 10 pages:
power -s 1 -f 10 'subject: computer'
Check out the script power
in eg/ for more options.
If you want me to include your modification or enhancement in the distribution of Net::Amazon, please do the following:
CVSROOT=:pserver:anonymous@cvs.net-amazon.sourceforge.net:/cvsroot/net-amazon export CVSROOT cvs login (just hit Enter) cvs co Net-Amazon
This will create a new Net-Amazon
directory with the latest
development version of Net::Amazon
on your local machine.
cd Net-Amazon cvs diff -Nau >patch_to_christopher.txtEmail me
patch_to_christopher.txt
. If your patch works (and you've included
test cases and documentation), I'll apply it on the spot.
Net::Amazon
depends on Log::Log4perl, which can be pulled from CPAN by
simply saying
perl -MCPAN -eshell 'install Log::Log4perl'
Also, it needs LWP::UserAgent and XML::Simple 2.x, which can be obtained in a similar way.
Once all dependencies have been resolved, Net::Amazon
installs with
the typical sequence
perl Makefile.PL make make test make install
Make sure you're connected to the Internet while running make test
because it will actually contact amazon.com and run a couple of live tests.
The module's distribution tarball and documentation are available at
http://perlmeister.com/devel/#amzn
and on CPAN.
Net::Amazon, Net::Amazon::Response, Net::Amazon::Property, Net::Amazon::Request, Net::Amazon::Property::Book, Net::Amazon::Property::VideoGames, Net::Amazon::Property::CE, Net::Amazon::Property::Music, Net::Amazon::Property::Software, Net::Amazon::Property::DVD, Net::Amazon::Response::Blended, Net::Amazon::Response::Manufacturer, Net::Amazon::Response::Seller, Net::Amazon::Response::EAN, Net::Amazon::Response::Director, Net::Amazon::Response::ISBN, Net::Amazon::Response::BrowseNode, Net::Amazon::Response::Power, Net::Amazon::Response::Wishlist, Net::Amazon::Response::Exchange, Net::Amazon::Response::Publisher, Net::Amazon::Response::MusicLabel, Net::Amazon::Response::Keyword, Net::Amazon::Response::ASIN, Net::Amazon::Response::Title, Net::Amazon::Response::UPC, Net::Amazon::Response::Artist, Net::Amazon::Response::Similar, Net::Amazon::Response::Actor, Net::Amazon::Response::Author, Net::Amazon::Response::TextStream, Net::Amazon::Attribute::ReviewSet, Net::Amazon::Attribute::Review, Net::Amazon::Validate::ItemSearch, Net::Amazon::Validate::Type, Net::Amazon::Validate::Type::SellerListingSearch, Net::Amazon::Validate::Type::CartModify, Net::Amazon::Validate::Type::ItemSearch, Net::Amazon::Validate::Type::CartCreate, Net::Amazon::Validate::Type::TagLookup, Net::Amazon::Validate::Type::SimilarityLookup, Net::Amazon::Validate::Type::BrowseNodeLookup, Net::Amazon::Validate::Type::CustomerContentSearch, Net::Amazon::Validate::Type::SellerLookup, Net::Amazon::Validate::Type::SellerListingLookup, Net::Amazon::Validate::Type::CustomerContentLookup, Net::Amazon::Validate::Type::ListLookup, Net::Amazon::Validate::Type::CartAdd, Net::Amazon::Validate::Type::TransactionLookup, Net::Amazon::Validate::Type::ListSearch, Net::Amazon::Validate::Type::CartGet, Net::Amazon::Validate::Type::ItemLookup, Net::Amazon::Validate::Type::CartClear, Net::Amazon::Validate::Type::Help, Net::Amazon::Validate::ItemSearch::jp::Sort, Net::Amazon::Validate::ItemSearch::jp::Manufacturer, Net::Amazon::Validate::ItemSearch::jp::ISPUPostalCode, Net::Amazon::Validate::ItemSearch::jp::EAN, Net::Amazon::Validate::ItemSearch::jp::Keywords, Net::Amazon::Validate::ItemSearch::jp::Director, Net::Amazon::Validate::ItemSearch::jp::PostalCode, Net::Amazon::Validate::ItemSearch::jp::AudienceRating, Net::Amazon::Validate::ItemSearch::jp::Availability, Net::Amazon::Validate::ItemSearch::jp::MaximumPrice, Net::Amazon::Validate::ItemSearch::jp::BrowseNode, Net::Amazon::Validate::ItemSearch::jp::Power, Net::Amazon::Validate::ItemSearch::jp::Conductor, Net::Amazon::Validate::ItemSearch::jp::Composer, Net::Amazon::Validate::ItemSearch::jp::DeliveryMethod, Net::Amazon::Validate::ItemSearch::jp::Magazines, Net::Amazon::Validate::ItemSearch::jp::Performer, Net::Amazon::Validate::ItemSearch::jp::Count, Net::Amazon::Validate::ItemSearch::jp::Publisher, Net::Amazon::Validate::ItemSearch::jp::State, Net::Amazon::Validate::ItemSearch::jp::MusicLabel, Net::Amazon::Validate::ItemSearch::jp::Brand, Net::Amazon::Validate::ItemSearch::jp::MinimumPrice, Net::Amazon::Validate::ItemSearch::jp::ItemPage, Net::Amazon::Validate::ItemSearch::jp::Title, Net::Amazon::Validate::ItemSearch::jp::Condition, Net::Amazon::Validate::ItemSearch::jp::MerchantId, Net::Amazon::Validate::ItemSearch::jp::Artist, Net::Amazon::Validate::ItemSearch::jp::Actor, Net::Amazon::Validate::ItemSearch::jp::Author, Net::Amazon::Validate::ItemSearch::jp::Orchestra, Net::Amazon::Validate::ItemSearch::jp::TextStream, Net::Amazon::Validate::ItemSearch::jp::Format, Net::Amazon::Validate::ItemSearch::us::Sort, Net::Amazon::Validate::ItemSearch::us::Manufacturer, Net::Amazon::Validate::ItemSearch::us::Browsenode, Net::Amazon::Validate::ItemSearch::us::Keywords, Net::Amazon::Validate::ItemSearch::us::Director, Net::Amazon::Validate::ItemSearch::us::Neighborhood, Net::Amazon::Validate::ItemSearch::us::PostalCode, Net::Amazon::Validate::ItemSearch::us::AudienceRating, Net::Amazon::Validate::ItemSearch::us::Availability, Net::Amazon::Validate::ItemSearch::us::MaximumPrice, Net::Amazon::Validate::ItemSearch::us::BrowseNode, Net::Amazon::Validate::ItemSearch::us::Power, Net::Amazon::Validate::ItemSearch::us::Conductor, Net::Amazon::Validate::ItemSearch::us::Composer, Net::Amazon::Validate::ItemSearch::us::Magazines, Net::Amazon::Validate::ItemSearch::us::Performer, Net::Amazon::Validate::ItemSearch::us::City, Net::Amazon::Validate::ItemSearch::us::Count, Net::Amazon::Validate::ItemSearch::us::Publisher, Net::Amazon::Validate::ItemSearch::us::State, Net::Amazon::Validate::ItemSearch::us::MusicLabel, Net::Amazon::Validate::ItemSearch::us::Brand, Net::Amazon::Validate::ItemSearch::us::MinimumPrice, Net::Amazon::Validate::ItemSearch::us::Keyword, Net::Amazon::Validate::ItemSearch::us::ItemPage, Net::Amazon::Validate::ItemSearch::us::Title, Net::Amazon::Validate::ItemSearch::us::Condition, Net::Amazon::Validate::ItemSearch::us::UPC, Net::Amazon::Validate::ItemSearch::us::MerchantId, Net::Amazon::Validate::ItemSearch::us::Artist, Net::Amazon::Validate::ItemSearch::us::MPAARating, Net::Amazon::Validate::ItemSearch::us::Actor, Net::Amazon::Validate::ItemSearch::us::Author, Net::Amazon::Validate::ItemSearch::us::Orchestra, Net::Amazon::Validate::ItemSearch::us::TextStream, Net::Amazon::Validate::ItemSearch::us::Format, Net::Amazon::Validate::ItemSearch::ca::Sort, Net::Amazon::Validate::ItemSearch::ca::Manufacturer, Net::Amazon::Validate::ItemSearch::ca::EAN, Net::Amazon::Validate::ItemSearch::ca::Keywords, Net::Amazon::Validate::ItemSearch::ca::Director, Net::Amazon::Validate::ItemSearch::ca::AudienceRating, Net::Amazon::Validate::ItemSearch::ca::MaximumPrice, Net::Amazon::Validate::ItemSearch::ca::BrowseNode, Net::Amazon::Validate::ItemSearch::ca::Power, Net::Amazon::Validate::ItemSearch::ca::Conductor, Net::Amazon::Validate::ItemSearch::ca::Composer, Net::Amazon::Validate::ItemSearch::ca::Count, Net::Amazon::Validate::ItemSearch::ca::Publisher, Net::Amazon::Validate::ItemSearch::ca::MusicLabel, Net::Amazon::Validate::ItemSearch::ca::Brand, Net::Amazon::Validate::ItemSearch::ca::MinimumPrice, Net::Amazon::Validate::ItemSearch::ca::ItemPage, Net::Amazon::Validate::ItemSearch::ca::Title, Net::Amazon::Validate::ItemSearch::ca::Condition, Net::Amazon::Validate::ItemSearch::ca::MerchantId, Net::Amazon::Validate::ItemSearch::ca::Artist, Net::Amazon::Validate::ItemSearch::ca::Actor, Net::Amazon::Validate::ItemSearch::ca::Author, Net::Amazon::Validate::ItemSearch::de::Sort, Net::Amazon::Validate::ItemSearch::de::Manufacturer, Net::Amazon::Validate::ItemSearch::de::ISPUPostalCode, Net::Amazon::Validate::ItemSearch::de::EAN, Net::Amazon::Validate::ItemSearch::de::Keywords, Net::Amazon::Validate::ItemSearch::de::Director, Net::Amazon::Validate::ItemSearch::de::PostalCode, Net::Amazon::Validate::ItemSearch::de::AudienceRating, Net::Amazon::Validate::ItemSearch::de::Availability, Net::Amazon::Validate::ItemSearch::de::MaximumPrice, Net::Amazon::Validate::ItemSearch::de::BrowseNode, Net::Amazon::Validate::ItemSearch::de::Power, Net::Amazon::Validate::ItemSearch::de::Conductor, Net::Amazon::Validate::ItemSearch::de::Composer, Net::Amazon::Validate::ItemSearch::de::DeliveryMethod, Net::Amazon::Validate::ItemSearch::de::Magazines, Net::Amazon::Validate::ItemSearch::de::Performer, Net::Amazon::Validate::ItemSearch::de::Count, Net::Amazon::Validate::ItemSearch::de::Publisher, Net::Amazon::Validate::ItemSearch::de::State, Net::Amazon::Validate::ItemSearch::de::MusicLabel, Net::Amazon::Validate::ItemSearch::de::Brand, Net::Amazon::Validate::ItemSearch::de::MinimumPrice, Net::Amazon::Validate::ItemSearch::de::ItemPage, Net::Amazon::Validate::ItemSearch::de::Title, Net::Amazon::Validate::ItemSearch::de::Condition, Net::Amazon::Validate::ItemSearch::de::MerchantId, Net::Amazon::Validate::ItemSearch::de::Artist, Net::Amazon::Validate::ItemSearch::de::MPAARating, Net::Amazon::Validate::ItemSearch::de::Actor, Net::Amazon::Validate::ItemSearch::de::Author, Net::Amazon::Validate::ItemSearch::de::Orchestra, Net::Amazon::Validate::ItemSearch::de::TextStream, Net::Amazon::Validate::ItemSearch::de::Format, Net::Amazon::Validate::ItemSearch::fr::Sort, Net::Amazon::Validate::ItemSearch::fr::Manufacturer, Net::Amazon::Validate::ItemSearch::fr::ISPUPostalCode, Net::Amazon::Validate::ItemSearch::fr::EAN, Net::Amazon::Validate::ItemSearch::fr::Keywords, Net::Amazon::Validate::ItemSearch::fr::Director, Net::Amazon::Validate::ItemSearch::fr::PostalCode, Net::Amazon::Validate::ItemSearch::fr::AudienceRating, Net::Amazon::Validate::ItemSearch::fr::Availability, Net::Amazon::Validate::ItemSearch::fr::MaximumPrice, Net::Amazon::Validate::ItemSearch::fr::BrowseNode, Net::Amazon::Validate::ItemSearch::fr::Power, Net::Amazon::Validate::ItemSearch::fr::Conductor, Net::Amazon::Validate::ItemSearch::fr::Composer, Net::Amazon::Validate::ItemSearch::fr::DeliveryMethod, Net::Amazon::Validate::ItemSearch::fr::Magazines, Net::Amazon::Validate::ItemSearch::fr::Performer, Net::Amazon::Validate::ItemSearch::fr::Count, Net::Amazon::Validate::ItemSearch::fr::Publisher, Net::Amazon::Validate::ItemSearch::fr::State, Net::Amazon::Validate::ItemSearch::fr::MusicLabel, Net::Amazon::Validate::ItemSearch::fr::Brand, Net::Amazon::Validate::ItemSearch::fr::MinimumPrice, Net::Amazon::Validate::ItemSearch::fr::ItemPage, Net::Amazon::Validate::ItemSearch::fr::Title, Net::Amazon::Validate::ItemSearch::fr::Condition, Net::Amazon::Validate::ItemSearch::fr::MerchantId, Net::Amazon::Validate::ItemSearch::fr::Artist, Net::Amazon::Validate::ItemSearch::fr::Actor, Net::Amazon::Validate::ItemSearch::fr::Author, Net::Amazon::Validate::ItemSearch::fr::Orchestra, Net::Amazon::Validate::ItemSearch::fr::Format, Net::Amazon::Validate::ItemSearch::uk::Sort, Net::Amazon::Validate::ItemSearch::uk::Manufacturer, Net::Amazon::Validate::ItemSearch::uk::ISPUPostalCode, Net::Amazon::Validate::ItemSearch::uk::EAN, Net::Amazon::Validate::ItemSearch::uk::Keywords, Net::Amazon::Validate::ItemSearch::uk::Director, Net::Amazon::Validate::ItemSearch::uk::PostalCode, Net::Amazon::Validate::ItemSearch::uk::AudienceRating, Net::Amazon::Validate::ItemSearch::uk::Availability, Net::Amazon::Validate::ItemSearch::uk::MaximumPrice, Net::Amazon::Validate::ItemSearch::uk::BrowseNode, Net::Amazon::Validate::ItemSearch::uk::Power, Net::Amazon::Validate::ItemSearch::uk::Conductor, Net::Amazon::Validate::ItemSearch::uk::Composer, Net::Amazon::Validate::ItemSearch::uk::DeliveryMethod, Net::Amazon::Validate::ItemSearch::uk::Magazines, Net::Amazon::Validate::ItemSearch::uk::Performer, Net::Amazon::Validate::ItemSearch::uk::Count, Net::Amazon::Validate::ItemSearch::uk::Publisher, Net::Amazon::Validate::ItemSearch::uk::State, Net::Amazon::Validate::ItemSearch::uk::MusicLabel, Net::Amazon::Validate::ItemSearch::uk::Brand, Net::Amazon::Validate::ItemSearch::uk::MinimumPrice, Net::Amazon::Validate::ItemSearch::uk::ItemPage, Net::Amazon::Validate::ItemSearch::uk::Title, Net::Amazon::Validate::ItemSearch::uk::Condition, Net::Amazon::Validate::ItemSearch::uk::MerchantId, Net::Amazon::Validate::ItemSearch::uk::Artist, Net::Amazon::Validate::ItemSearch::uk::Actor, Net::Amazon::Validate::ItemSearch::uk::Author, Net::Amazon::Validate::ItemSearch::uk::Orchestra, Net::Amazon::Validate::ItemSearch::uk::TextStream, Net::Amazon::Validate::ItemSearch::uk::Format, Net::Amazon::Request::Blended, Net::Amazon::Request::Sort, Net::Amazon::Request::Manufacturer, Net::Amazon::Request::Seller, Net::Amazon::Request::EAN, Net::Amazon::Request::Director, Net::Amazon::Request::ISBN, Net::Amazon::Request::BrowseNode, Net::Amazon::Request::Power, Net::Amazon::Request::Wishlist, Net::Amazon::Request::Exchange, Net::Amazon::Request::Publisher, Net::Amazon::Request::MusicLabel, Net::Amazon::Request::Keyword, Net::Amazon::Request::ASIN, Net::Amazon::Request::Title, Net::Amazon::Request::UPC, Net::Amazon::Request::Artist, Net::Amazon::Request::Similar, Net::Amazon::Request::Actor, Net::Amazon::Request::Author, Net::Amazon::Request::TextStream, Net::Amazon::Result::Seller, Net::Amazon::Result::Seller::Listing
Source Code: Net::Amazon
Net::Amazon::RemoteCart
The Net::Amazon
project's home page is hosted on
http://net-amazon.sourceforge.net
where you can find documentation, news and the latest development and
stable releases for download. If you have questions about how to
use Net::Amazon
, want to report a bug or just participate in its
development, please send a message to the mailing
list net-amazon-devel@lists.sourceforge.net
Mike Schilli, <na@perlmeister.com> (Please contact me via the mailing list: net-amazon-devel@lists.sourceforge.net )
Maintainers: Christopher Boumenot, <boumenot+na@gmail.com>
Contributors (thanks y'all!):
Andy Grundman <andy@hybridized.org> Barnaby Claydon <bclaydon@perseus.com> Batara Kesuma <bkesuma@gaijinweb.com> Bill Fitzpatrick Brian <brianbrian@gmail.com> Brian Hirt <bhirt@mobygames.com> Dan Kreft <dan@kreft.net> Dan Sully <daniel@electricrain.com> Jackie Hamilton <kira@cgi101.com> Konstantin Gredeskoul <kig@get.topica.com> Lance Cleveland <lancec@proactivewm.com> Martha Greenberg <marthag@mit.edu> Martin Streicher <martin.streicher@apress.com> Mike Evron <evronm@dtcinc.net> Padraic Renaghan <padraic@renaghan.com> rayg <rayg@varchars.com> Robert Graff <rgraff@workingdemo.com> Robert Rothenberg <wlkngowl@i-2000.com> Steve Rushe <steve@deeden.co.uk> Tatsuhiko Miyagawa <miyagawa@livedoor.jp> Tony Bowden <tony@kasei.com>
Copyright 2003, 2004 by Mike Schilli <na@perlmeister.com>
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.