File: author.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-- 419 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


# examples/author.pl

use strict;
use warnings;
use Data::Printer;
use MetaCPAN::Client;

my $author =
    MetaCPAN::Client->new()->author('XSAWYERX');

my %output = (
    NAME    => $author->name,
    EMAILS  => $author->email,
    COUNTRY => $author->country,
    CITY    => $author->city,
    PROFILE => $author->profile,
    LINKS   => $author->links,
    RELEASE_COUNTS => $author->release_count,
);

p %output;