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: 20 EXAMPLE2 # Pragmas. use strict; use warnings; # Modules. use Acme::CPANAuthors; use Data::Printer; # Create object. my $authors = Acme::CPANAuthors->new('Czech'); # Get all ids. my @ids = $authors->id; # Print out. p @ids; # Output: # [ # [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] "PASKY", # [13] "PEK", # [14] "RUS", # [15] "RVASICEK", # [16] "SKIM", # [17] "TKR", # [18] "TRIPIE", # [19] "ZOUL" # ] DEPENDENCIES Acme::CPANAuthors. REPOSITORY AUTHOR Michal Špaček LICENSE AND COPYRIGHT BSD license. VERSION 0.09