NAME
Acme::CPANAuthors::Czech - We are Czech CPAN authors.
SYNOPSIS
use Acme::CPANAuthors;
my $authors = Acme::CPANAuthors->new('Czech');
my $number = $authors->count;
my @ids = $authors->id;
my @distors = $authors->distributions('JANPAZ');
my $url = $authors->avatar_url('TRIPIE');
my $kwalitee = $authors->kwalitee('RUS');
DESCRIPTION
See documentation for Acme::CPANAuthors for more details.
EXAMPLE1
# Pragmas.
use strict;
use warnings;
# Modules.
use Acme::CPANAuthors;
# Create object.
my $authors = Acme::CPANAuthors->new('Czech');
# Get number of Czech CPAN authors.
my $count = $authors->count;
# Print out.
print "Count of Czech CPAN authors: $count\n";
# Output:
# Count of Czech CPAN authors: 19
EXAMPLE2
# Pragmas.
use strict;
use warnings;
# Modules.
use Acme::CPANAuthors;
use Dumpvalue;
# Create object.
my $authors = Acme::CPANAuthors->new('Czech');
# Get all ids.
my @ids = $authors->id;
# Dump out.
my $dump = Dumpvalue->new;
$dump->dumpValues(\@ids);
# Output:
# 0 ARRAY(0x9c01980)
# 0 'DANPEDER'
# 1 'HIHIK'
# 2 'HPA'
# 3 'JANPAZ'
# 4 'JANPOM'
# 5 'JENDA'
# 6 'JSPICAK'
# 7 'KLE'
# 8 'MAJLIS'
# 9 'MILSO'
# 10 'MJFO'
# 11 'PAJAS'
# 12 'PEK'
# 13 'RUS'
# 14 'RVASICEK'
# 15 'SKIM'
# 16 'TKR'
# 17 'TRIPIE'
# 18 'ZOUL'
DEPENDENCIES
REPOSITORY
https://github.com/tupinek/Acme-CPANAuthors-Czech
AUTHOR
Michal Špaček mailto:skim@cpan.org
LICENSE AND COPYRIGHT
BSD license.
VERSION
0.07