in reply to Re: WWW-Search module that works
in thread WWW-Search module that works
Shows nothing (the same with replacing Yahoo::UK with Altavista/Msn/Alltheweb...)#! usr/bin/perl use strict; use warnings; use WWW::Search; my $oSearch = new WWW::Search('Yahoo::UK'); my $sQuery = WWW::Search::escape_query("spiderman 3 news"); $oSearch->native_query($sQuery); while ( my $oResult = $oSearch->next_result() ) { print "Adding: ", $oResult->url, "\n"; } print ref($oSearch);
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: WWW-Search module that works
by talexb (Chancellor) on Jun 12, 2007 at 14:18 UTC | |
by coder57 (Novice) on Jun 12, 2007 at 20:21 UTC | |
by talexb (Chancellor) on Jun 13, 2007 at 01:41 UTC | |
| |
by ikegami (Patriarch) on Jun 14, 2007 at 16:34 UTC |