The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more

NAME

Net::GitHub::V3::Search - GitHub Search API

SYNOPSIS

my $gh = Net::GitHub::V3->new; # read L<Net::GitHub::V3> to set right authentication info
my $search = $gh->search;

DESCRIPTION

METHODS

http://developer.github.com/v3/search/

issues
my %data = $search->issues({
q => 'state:open repo:fayland/perl-net-github',
sort => 'created',
order => 'asc',
});
print Dumper(\$data{items});
repositories
my %data = $search->repositories({
q => 'perl',
sort => 'stars',
order => 'desc',
});
print Dumper(\$data{items});
code
my %data = $search->code({
q => 'addClass in:file language:js repo:jquery/jquery'
});
print Dumper(\$data{items});
users
my %data = $search->users({
q => 'perl',
sort => 'followers',
order => 'desc',
});
print Dumper(\$data{users});

AUTHOR & COPYRIGHT & LICENSE

Refer Net::GitHub