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
- search
-
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.