WWW::Search::ISBNDB - Search for book information on isbndb.com


WWW-Search-ISBNDB documentation  | view source Contained in the WWW-Search-ISBNDB distribution.

Index


NAME

Top

WWW::Search::ISBNDB - Search for book information on isbndb.com

SYNOPSIS

Top

This module creates an easy to use interface for searching books on isbndb.com.

  use WWW::Search;  
  my $search = WWW::Search->new('ISBNDB', key => 'abcd1234');
  $search->native_query('born in blood');
  my $result = $search->next_result();
  while (my $result = $search->next_result() ) {
	print "$result->title ($result->{'isbn'} - $result->{'book_id})\n";
	print " -- $result->{'titlelong'}\n";
	print "  '$result->{'summary'}'\n";
  }

DETAILS

Top

This prepares the search by checking for a valid developer key. A developer key can be obtained at isbndb.com and is free.

native_retrieve_some

The logic behind this module is very simple. First we prepare the search query that includes the access_key, search type, search value and display options and fetch the page with LWP::UserAgent. Once we have the results, we use XML::Simple to sift through them and populate a WWW::SearchResult object.

Note that because of the complexity of the search result, it does not have all of the default WWW::SearchResult fields. The extra fields are contained within the object hash and consist of the following:

  book_id
  idbn
  language
  summary
  titlelong
  notes

url_encode

AUTHOR

Top

Nick Gerakines, <nick@socklabs.com>

BUGS

Top

Please report any bugs or feature requests to bug-www-search-isbndb@rt.cpan.org, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=WWW-Search-ISBNDB. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.

ACKNOWLEDGEMENTS

Top

Thanks to isbndb.com for the data that powers this module.

COPYRIGHT & LICENSE

Top


WWW-Search-ISBNDB documentation  | view source Contained in the WWW-Search-ISBNDB distribution.