File: authors_blogs.pl

package info (click to toggle)
libmetacpan-client-perl 2.033000-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 552 kB
  • sloc: perl: 2,564; makefile: 6
file content (23 lines) | stat: -rw-r--r-- 516 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
use strict;
use warnings;

use MetaCPAN::Client;
use Ref::Util qw< is_arrayref >;

my $mcpan = MetaCPAN::Client->new;

my $all_authors = $mcpan->all('authors');

AUTHOR: while ( my $author = $all_authors->next ) {

  BLOG: for my $blog ( @{ $author->blog || [] } ) {
        $blog and exists $blog->{url} or next BLOG;
        my $url = $blog->{url};

        my $blogs_csv = is_arrayref($url)
            ? join q{,} => @$url
            : $url;

        printf "%-10s: %s\n", $author->pauseid, $blogs_csv;
    }
}