Finance::Bank::Natwest is a Perl module that provides a rudimentary interface to the Natwest online banking system at https://www.nwolb.com/. You will need either Crypt::SSLeay or IO::Socket::SSL installed for HTTPS support to work with LWP.
SYNOPSIS
my $nw = Finance::Bank::Natwest->new( credentials => 'Constant',
credentials_options => {
dob => '010179',
uid => '0001',
password => 'Password',
pin => '4321' } );
my @accounts = $nw->accounts;
foreach (@accounts) {
printf "%s : %6s / %8s : GBP %8.2f
",
$_->{name}, $_->{sortcode}, $_->{account}, $_->{available};
}
Product's homepage
Requirements:
· Perl