I have been trying to build in your error checking, as well as tie it into a DBM for when it crashes. Heres what I got:
#!/usr/bin/perl -w
use strict;
use warnings;
use LWP::RobotUA;
use HTML::SimpleLinkExtor;
use vars qw/$http_ua $link_extractor/;
sub crawl {
my @queue = @_;
my %visited;
my $a = 42464;
my $base;
dbmopen(%visited, "visited", 0666);
while ( my $url = shift @queue ) {
next if $visited{$url};
my $response = $http_ua->get($url);
if ($response->is_success) {
my $content = $response->content
open FILE, '>' . ++$a . '.txt';
print FILE "$url\n";
print FILE $content;
close FILE;
print qq{Downloaded: "$url"\n};
push @queue, do {
my $link_extractor = HTML::SimpleLinkExtor->new($u
+rl);
$link_extractor->parse($content);
$link_extractor->a;
};
$visited{$url} = 1;
} else {
dbmclose(%visited);
die $response->status_line;
}
}
}
$http_ua = new LWP::RobotUA theusefulbot => 'bot@theusefulnet.com';
$http_ua->delay( 10 / 6000 );
crawl(@ARGV);
This gives me: Can't call method "is_success" without a package or object reference at theusefulbot.pl line 21.
Any Ideas?
Thank you
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
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, 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, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
Outside of code tags, you may need to use entities for some characters:
| |
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.
|
|