in reply to Automating downloads with Perl
But then you need to find the right links, etc. I recommend you also look at HTML::Tree which makes light work of plucking the right bits out of a complex html document. Don't be scared if it seems complex - it's really a quite simple matter of parsing the html, and using
or something along those lines...my @bullets = $tree->look_down('_tag', 'li'); map { print $_->as_text; } @bullets;
|
|---|