heres some code that i did ....
#!/usr/bin/perl -w
use strict;
use WWW::Mechanize;
my $q = $ARGV[0] || die("\nusage : ".$0." query 3 spaces\n\n");
$q .= ' '.$ARGV[1] if ($ARGV[1]);
$q .= ' '.$ARGV[2] if ($ARGV[2]);
my $url = 'http://www.google.co.uk';
my $mech = WWW::Mechanize->new(agent => "WWW");
$mech->get($url);
$mech->submit_form(form_name => 'f',fields => {'q' => $q}, button => '
+btnG');
for my $i (1..200) {
print "page : ".$i."\n";
dosomat($mech->content);
my $next = $mech->find_link( text_regex => qr/Next$/, url_regex => q
+r/^\/search\?/) or die("finished on page : ".$i."\n");
$mech->get($url.$next->url);
}
exit(0);
sub dosomat {
my ($content) = @_;
my @cont = $content =~ m{<div class=g(.*?)</div>}gsi;
for my $i (0..$#cont) {
print $cont[$i]."\n\n\n";
}
}
i had the same problem, found that the link had div tags within it.
google wont let me use there services since i ran this script a couple of times, :(
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: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.