Beefy Boxes and Bandwidth Generously Provided by pair Networks
No such thing as a small change
 
PerlMonks  

Re: Programmatic way to get CPAN Module tarballs?

by ctilmes (Vicar)
on Jan 13, 2010 at 17:43 UTC ( [id://817237]=note: print w/replies, xml ) Need Help??


in reply to Programmatic way to get CPAN Module tarballs?

Try the CPAN module itself.

CPAN::Distribution::get might do the trick.

  • Comment on Re: Programmatic way to get CPAN Module tarballs?

Replies are listed 'Best First'.
Re^2: Programmatic way to get CPAN Module tarballs?
by Plankton (Vicar) on Jan 13, 2010 at 17:58 UTC
    thanks! exactly what I needed!
      #!/usr/bin/perl -w use strict; use CPAN; my @cpanmods = qw / Algorithm::Interval2Prefix \ Apache::Session::File \ ... other modules go here XML::Generator /; for my $cpanmod ( @cpanmods ) { for my $mod (CPAN::Shell->expand("Module", $cpanmod )) { print "http://search.cpan.org/CPAN/authors/id/" . $mod +->{'RO'}{'CPAN_FILE'} . "\n"; } }

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://817237]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others scrutinizing the Monastery: (9)
As of 2024-04-18 13:21 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found