The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

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.