1MetaCPAN::API::Author(3U)ser Contributed Perl DocumentatiMoentaCPAN::API::Author(3)
2
3
4
6 MetaCPAN::API::Author - Author information for MetaCPAN::API
7
9 version 0.51
10
12 This role provides MetaCPAN::API with fetching information about
13 authors.
14
16 author
17 my $result1 = $mcpan->author('XSAWYERX');
18 my $result2 = $mcpan->author( pauseid => 'XSAWYERX' );
19
20 Searches MetaCPAN for a specific author.
21
22 You can do complex searches using 'search' parameter:
23
24 # example lifted from MetaCPAN docs
25 my $result = $mcpan->author(
26 search => {
27 q => 'profile.name:twitter',
28 size => 1,
29 },
30 );
31
33 Sawyer X <xsawyerx@cpan.org>
34
36 This software is copyright (c) 2011 by Sawyer X.
37
38 This is free software; you can redistribute it and/or modify it under
39 the same terms as the Perl 5 programming language system itself.
40
41
42
43perl v5.32.0 2020-07-28 MetaCPAN::API::Author(3)