NAME
Catmandu::Importer::CPAN - get information about CPAN releases
SYNOPSIS
use Catmandu::Importer::CPAN;
my $importer = Catmandu::Importer::CPAN->new( prefix => 'Catmandu' );
$importer->each(sub {
   my $module = shift;
   print $module->{name} , "\n";
   print $module->{version} , "\n";
   print $module->{date} , "\n";
});
Or with the catmandu command line client:
$ catmandu convert CPAN --author NICS --fields distribution,date to CSV
DESCRIPTION
This Catmandu::Importer retrieves information about CPAN releases via MetaCPAN API.
CONFIGURATION
- prefix
 - 
Prefix that releases must start with, e.g.
Catmandu. - 
Selected author
 - fields
 - 
Array reference or comma separated list of fields to get. The special value
allwill return all fields. Set toid,date,distribution,version,abstractby default. 
CONTRIBUTORS
Patrick Hochstenbach, <patrick.hochstenbach at ugent.be>
Jakob Voss <jakob.voss at gbv.de>