sub test_sub { my ($thischan, $thisuser, $thismsg) = (@_); return "test_sub" if @_ == 0; return unless $thismsg =~ /^:google /; use WWW::Search; my $search = new WWW::Search('Google'); $search -> maximum_to_retrieve(5); $search -> native_query(WWW::Search::escape_query("osama")); $search -> seek_result(2); my $result = $search -> results(); use Data::Dumper; print Dumper \$result; carp "cycling"; }
I took the above code, most of it, from WWW::Search::Google's pod, and some of it from one of merlyn's columns. I get the following output:
:google bleh # this was my input Found Total: 1,110,000 $VAR1 = \undef; cycling at test_harness.pl line 31 main::test_sub('#bleh', 'alex', ':google bleh') called at test +_harness.pl line 17
This seems to be totally contrary to what the docs say will happen, and also the results merlyn got. If i switch results to next_result like the supplied POD, i still have the same situation. I'm confused. Has anyone successfully worked with this module? And I cant seem to find it in Super Search.

Oh, and there is a user, google, which is rather irritating when searching for google. alas.

brother dep

update:

i have used several of the search modules including Excite and hotbot to no avail.

--
Laziness, Impatience, Hubris, and Generosity.


In reply to Difficulties with WWW::Search (code) by deprecated

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.