|
Parse::CPAN::Modlist::Module - object representation of a single module in the 03modlist.data file |
Parse::CPAN::Modlist::Module - object representation of a single module in the 03modlist.data file
use Parse::CPAN::Modlist;
my $p = Parse::CPAN::Modlist->new("t/data/03modlist.data");
foreach my $name ($p->modules) {
my $module = $p->module($name);
print " The module '".$module->name."'".
" is written by ".$module->author.
" and is described as '".$module->description.
"'\n";
}
The methods are automatically generated from the columns in 03modlist.data
so it's possible that this documentation amy actually be wrong. Please let me
know if this happens.
The name of this module (an alias to modid - the actual column name).
The author's CPAN id (an alias to userid - the actual column name).
A description of the module
The category that this module falls under (an alias to chapterid - the actual column name).
See http://www.cpan.org/modules/by-category/ for the categories.
DSLIP characters are intended to convey information about the current state of the module.
See http://www.cpan.org/modules/00modlist.long.html#ID1_ModuleListi for details
=over 4
=over 4
=over 4
None that I know of.
Distributed under the same terms as Perl itself.
Copyright (c) 2004,
Simon Wistow <simon@thegestalt.org>
|
Parse::CPAN::Modlist::Module - object representation of a single module in the 03modlist.data file |