I just made a script to grab links from a website, and in turn saves them into a text file.

Now I'm working on my regexes so it will grab links which contains php?dl= in the url from the text file:

E.g.: www.example.com/site/admin/a_files.php?dl=33931

Its pretty much the address you get when you hover over the dl button on the site. From which you can click to download or "right click save".

I'm just wondering on how to achieve this, having to download the content of the given address which will download a *.txt file. All from the script of course.

link|improve this question
What is the question here? You made a script and now want it to only download certain URLs? Are you looking for a regexp? – Konerak Jul 6 '10 at 11:39
I'm trying to figure out how you download the file associated with url. For example, on the website you get click 'dl' icon/button and your browser automatically downloads the file for you. ie: example.com/site/admin/a_files.php?dl=33931 would download "file1.txt" I'm just wondering how you can download the file in Perl. The regexp part is not a problem. Or have I missed a function that can do all of this with ease haha – eraldcoil Jul 6 '10 at 11:44
feedback

3 Answers

up vote 6 down vote accepted

Make WWW::Mechanize your new best friend.

Here's why:

  • It can identify links on a webpage that match a specific regex (/php\?dl=/ in this case)
  • It can follow those links through the follow_link method
  • It can get the targets of those links and save them to file

All this without needing to save your wanted links in an intermediate file! Life's sweet when you have the right tool for the job...


Example

use strict;
use warnings;
use WWW::Mechanize;

my $url  = 'http://www.example.com/';
my $mech = WWW::Mechanize->new();

$mech->get ( $url );

my @linksOfInterest = $mech->find_all_links ( text_regex => qr/php\?dl=/ );

my $fileNumber++;

foreach my $link (@linksOfInterest) {

    $mech->get ( $link, ':contentfile' => "file".($fileNumber++).".txt" );
    $mech->back();
}
link|improve this answer
Awesome! you stated all the things I have been looking for, for the past 2 hours lol. Thank you :D – eraldcoil Jul 6 '10 at 11:58
This helped alot. Thank you very much :D. I have so much to learn still, thnx for pointing out this very helpful module :D – eraldcoil Jul 6 '10 at 12:27
I see no reason in this example to do the ->back() and ->reload(). – Andy Lester Jul 6 '10 at 16:14
@Andy : I suppose it depends on the page in question. If it updates frequently, a reload() may be prudent. – Zaid Jul 6 '10 at 16:17
@Zaid: You're not doing anything with the reloaded page. @linksofInterest doesn't change. – Andy Lester Jul 7 '10 at 13:31
show 1 more comment
feedback

Crawling in Perl - A Quick Tutorial

link|improve this answer
feedback

You can download the file with LWP::UserAgent:

my $ua = LWP::UserAgent->new();  
my $response = $ua->get($url, ':content_file' => 'file.txt');  

Or if you need a filehandle:

open my $fh, '<', $response->content_ref or die $!;
link|improve this answer
ahhh ic so that's how you use it. Thanks :D – eraldcoil Jul 6 '10 at 12:04
2  
Or, just use 'LWP::Simple::getstore($url, $file)`. – Sinan Ünür Jul 6 '10 at 12:37
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.