Github-Jobs-Api
GitHub Jobs API - interface to GitHub Jobs API!
INSTALLATION
To install this module, run the following commands:
perl Build.PL
./Build
./Build test
./Build install
SYNOPSIS
use strict;
use warnings;
use Data::Dumper;
use JSON::XS;
my $q ='perl';
my $str = Github::Jobs::Api->new(description=>$q);
my $get_v = $str->search();
my $decoded = JSON::XS::decode_json($get_v);
foreach my $items(@ {$decoded})
{
print $items-> {title} . "----";
print $items-> {company} . "\n";
}
SUPPORT AND DOCUMENTATION
After installing, you can find documentation for this module with the
perldoc command.
perldoc Github::Jobs::Api
You can also look for information at:
https://github.com/ovntatar/Github-Jobs-API/issues
or on the github official api documnetation site:
https://jobs.github.com/api
AUTHOR
Ovidiu Nita Tatar, C<< <ovn.tatar at gmail.com> >>
=head1 LICENSE AND COPYRIGHT
Copyright 2013 Ovidiu Nita Tatar.
This program is free software; you can redistribute it and/or modify it
under the terms of either: the GNU General Public License as published
by the Free Software Foundation; or the Artistic License.
See http://dev.perl.org/licenses/ for more information.