# examples/author-country.pl use strict; use warnings; use Data::Printer; use MetaCPAN::Client; my @countries = qw; my %cc2authors; for my $cc ( @countries ) { my $authors = MetaCPAN::Client->new->author({ country => $cc }); $cc2authors{$cc} = $authors->total; } p %cc2authors;