Finance::Bank::LloydsTSB

Check your bank accounts from Perl
Download

Finance::Bank::LloydsTSB Ranking & Summary

Advertisement

  • Rating:
  • License:
  • Perl Artistic License
  • Price:
  • FREE
  • Publisher Name:
  • Adam Spiers
  • Publisher web site:
  • http://www.adamspiers.org/

Finance::Bank::LloydsTSB Tags


Finance::Bank::LloydsTSB Description

Check your bank accounts from Perl 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->fetch_statement; # Retrieve QIF for all transactions in January 2008. my $qif = $accounts->download_statement(2008, 01, 01, 5); Requirements: · Perl


Finance::Bank::LloydsTSB Related Software