NAME
MetaCPAN::Client::Author - An Author data object
VERSION
version 1.022000
DESCRIPTION
my $author = $mcpan->author('MICKEY');
This represents a MetaCPAN author entity.
ATTRIBUTES
name
Author name.
pauseid
Author PAUSE ID.
Author's Emails (array-ref)
blog
Author's blog info (hash-ref)
Example:
{
url => "http://blogs.perl.org/users/brian_d_foy/"
feed => "http://blogs.perl.org/users/brian_d_foy/atom.xml",
}
city
Author's city.
country
Author's country.
region
Author's region.
dir
Author's directory of distribution and files.
Example: id/P/PE/PERLER
gravatar_url
Author's Gravatar.com user picture URL. This URL is generated using PAUSEID@cpan.org.
profile
Author's user profiles (array-ref).
Example:
[
{ name => "amazon", id => "B002MRC39U" },
{ name => "stackoverflow", id => "brian-d-foy" },
]
website
Author's websites (array-ref).
release_count
Author's release counts (hash-ref).
Example: { latest => 118, backpan-only => 558, cpan => 18, }
updated
timestamp.
links
hash-ref.
extra
hahs-ref.
donation
array-ref.
user
identification code.
METHODS
releases
my $releases = $author->releases();
Search all releases of current author's object. will return a ResultSet of MetaCPAN::Client::Release objects.
AUTHORS
Sawyer X <xsawyerx@cpan.org>
Mickey Nasriachi <mickey@cpan.org>
COPYRIGHT AND LICENSE
This software is copyright (c) 2016 by Sawyer X.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.