in reply to How to pull author, title using ISBN (WWW::Scraper::ISBN)?
There IS an "isbn" method in package WWW::Scraper::ISBN::Record , that is used to define a new record - but is probably not useful for your case.
For your case, I would try (UNTESTED):
my @isbns = ( "9780134511184" ); for my $num (@isbns) { my $record = $scraper->search($isbn); if($record->found) { ....
"It's ten o'clock... Do you know where your AI programs are?"
|
|---|