NAME
WWW::Gittip - Implementing the Gittip API more or less
SYNOPSIS
use WWW::Gittip;
my $charts = WWW::Gittip->charts;
my $charts = WWW::Gittip->charts;
DESCIPTION
The API docs of Gittp: https://github.com/gittip/www.gittip.com#api
When necessary, you can get an API key from your account on Gittip at https://www.gittip.com/szabgab/account/
charts
Returns an array reference from /about/charts.json Each element in the array has the following fields:
{
"active_users" => 50,
"charges" => 25.29,
"date" => "2012-06-22",
"total_gifts" => 62.08,
"total_users" => 621,
"weekly_gifts" => 30.08,
"withdrawals" => 0.00
},
paydays
Returns an array reference from /about/paydays.json Each element in the array has the following fields:
{
'ach_fees_volume' => '0',
'ach_volume' => '0',
'charge_fees_volume' => '2.11',
'charge_volume' => '25.28',
'nachs' => 0,
'nactive' => 25
'ncc_failing' => 1,
'ncc_missing' => 18,
'ncharges' => 11,
'nparticipants' => 175,
'ntransfers' => 49,
'ntippers' => 12,
'transfer_volume' => '24.8',
'ts_end' => '2012-06-08T12:03:19.889215+00:00',
'ts_start' => '2012-06-08T12:02:45.182409+00:00',
},
stats
Returns a reference to a hash from /about/stats.json with lots of keys...
AUTHOR
Gabor Szabo http://perlmaven.com/
LICENSE
Copyright (c) 2014, Gabor Szabo http://szabgab.com/
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.