Finance::Bank::LloydsTSB is a Perl module that provides a rudimentary interface to the LloydsTSB online banking system at https://online.lloydstsb.co.uk/. You will need either Crypt::SSLeay or IO::Socket::SSL installed for HTTPS support to work with LWP.
SYNOPSIS
use Finance::Bank::LloydsTSB;
my @accounts = Finance::Bank::LloydsTSB->check_balance(
username => $username,
password => $password
memorable => $memorable_phrase
);
my $total = 0;
my $format = " s : !s : GBP %9.2f
";
for my $acc (@accounts) {
$total += $acc->balance;
printf $format, $acc->name, $acc->descr_num, $acc->balance;
}
print "-" x 70, "
";
printf $format, 'TOTAL', '', $total;
my $statement = $accounts[0]->fetch_statement;
# Retrieve QIF for all transactions in January 2008.
my $qif = $accounts[1]->download_statement(2008, 01, 01, 5);
Product's homepage
Requirements:
· Perl