NAME
MetaCPAN::Client::Author - An Author data object
VERSION
version 1.020000
DESCRIPTION
my $author = $mcpan->author('MICKEY');
This represents a MetaCPAN author entity.
ATTRIBUTES
name
Author name.
pauseid
Author PAUSE ID.
Author's Email.
blog
Array of author's blog addresses.
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.
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
Array of author's user profiles.
Example:
[
{ name => "amazon", id => "B002MRC39U" },
{ name => "stackoverflow", id => "brian-d-foy" },
]
website
Array of Author's websites.
updated
user
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.