Finance::Bank::Cahoot is a Perl module that provides a rudimentary interface to the Cahoot online banking system at https://www.cahoot.com/. You will need either Crypt::SSLeay or IO::Socket::SSL installed for HTTPS support to work with WWW::Mechanize.
SYNOPSIS
my $cahoot = Finance::Bank::Cahoot->new(credentials => 'Constant',
credentials_options => {
account => '12345678',
password => 'verysecret',
place => 'London',
date => '01/01/1906',
username => 'dummy',
maiden => 'Smith' } );
my $accounts = $cahoot->accounts;
$cahoot->set_account($accounts->[0]->{account});
my $snapshot = $cahoot->snapshot;
foreach my $row (@$snapshot) {
print join ',', @$row; print "
";
}
Product's homepage
Requirements:
· Perl