Finance-Bank-Natwest
view release on metacpan or search on metacpan
NAME
Finance::Bank::Natwest - Check your Natwest bank accounts from Perl
DESCRIPTION
This module provides a rudimentary interface to the Natwest online
banking system at C<https://www.nwolb.com/>. You will need
either C<Crypt::SSLeay> or C<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 "%25s : %6s / %8s : GBP %8.2f\n",
$_->{name}, $_->{sortcode}, $_->{account}, $_->{available};
}
AUTHOR
Jody Belka, "knew@cpan.org"
COPYRIGHT AND LICENSE
Copyright 2003 by Jody Belka
This library is free software; you can redistribute it and/or modify it
under the same terms as Perl itself.
( run in 2.191 seconds using v1.01-cache-2.11-cpan-8f98c5d2c55 )