logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

Pithub::SearchV3 - Github v3 Search API

Author

       Johannes Plunien <plu@cpan.org>

Methods

issues
       •   Find issues by state and keyword.

               GET /search/issues

           Examples:

               my $search = Pithub::Search->new;
               my $result = $search->issues(
                   q => 'some keyword',
               );

   repos
       •   Find repositories by keyword.

               GET /search/repositories

           Examples:

               my $search = Pithub::SearchV3->new;
               my $result = $search->repos(
                   q => 'github language:Perl',
               );

   users
       •   Find users by keyword.

               GET /search/users

           Examples:

               my $search = Pithub::SearchV3->new;
               my $result = $search->users(
                   q => 'plu',
               );

   code
       •   Search code by keyword.

               GET /search/code

           Examples:

               my $search = Pithub::SearchV3->new;
               my $result = $search->code(
                   q => 'addClass repo:jquery/jquery',
               );

Name

       Pithub::SearchV3 - Github v3 Search API

Version

       version 0.01043

See Also