The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

Net::GitHub::V1::Search - GitHub Search (V1)

SYNOPSIS

use Net::GitHub::V1::Search;

my $search = Net::GitHub::V1::Search->new();
my $result = $search->search('fayland');
foreach my $repos ( @{ $result->{repositories} } ) {
    print "$repos->{description}\n";
}

DESCRIPTION

METHODS

use http://github.com/guides/the-github-api to get JSON result

AUTHOR

Fayland Lam, <fayland at gmail.com>

COPYRIGHT & LICENSE

Copyright 2009 Fayland Lam, all rights reserved.

This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.