Finance-Bank-LloydsTSB
view release on metacpan or search on metacpan
my $statement = $accounts[0]->fetch_statement;
# Retrieve QIF for all transactions in January 2008.
my $qif = $accounts[1]->download_statement(2008, 01, 01, 5);
See fetch-statement.pl for a working example.
DESCRIPTION
This module 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.
WARNING
This is code for online banking, and that means your money, and that
means BE CAREFUL. You are encouraged, nay, expected, to audit the source
of this module yourself to reassure yourself that I am not doing
anything untoward with your banking data. This software is useful to me,
but is provided under NO GUARANTEE, explicit or implied.
AUTHORS
lib/Finance/Bank/LloydsTSB.pm view on Meta::CPAN
# Retrieve QIF for all transactions in January 2008.
my $qif = $accounts[1]->download_statement(2008, 01, 01, 5);
See F<fetch-statement.pl> for a working example.
=head1 DESCRIPTION
This module provides a rudimentary interface to the LloydsTSB online
banking system at C<https://online.lloydstsb.co.uk/>. You will need
either C<Crypt::SSLeay> or C<IO::Socket::SSL> installed for HTTPS
support to work with LWP.
=cut
use strict;
use warnings;
use Carp;
our $VERSION = '1.35';
( run in 0.459 second using v1.01-cache-2.11-cpan-fd5d4e115d8 )