in reply to problem with module installation
(more or less pasted from perldoc WWW::Search) to see if PubMed is recognized correctly. Assuming it is, you could tryuse WWW::Search; print sort &WWW::Search::installed_engines();
so that the engine will spit out some (hopefully useful) debug information.use WWW::Search; my $oSearch=WWW::Search->new('PubMed'); $oSearch->native_query( "lung cancer treatment", { search_debug=>1, search_parser_debug=>1 } ); #... whatever ...
|
|---|