The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Finance::Bank::Smile - Check your Smile bank accounts from Perl

VERSION

Version 0.05

SYNOPSIS

  use Finance::Bank::Smile;
  my @accounts = Finance::Bank::Smile->check_balance(
      sortCode      => 'xxxxxx',
      accountNumber => 'xxxxxxxx',
      passNumber    => 'xxxx',
      memorableDate => 'xx/xx/xxxx',
      lastSchool    => 'xxxxxxxxxxxxxxxxxx',
      memorableName => 'xxxxxxxx',
      birthPlace    => 'xxxxxx',
      firstSchool   => 'xxxxxxxxxxxx',
  );

  # print the accounts and balances
  # prints:
  # Current Account £123.45+
  print map "$_->{account} $_->{balance}\n",@accounts;

DESCRIPTION

This module provides a rudimentary interface to the Smile Online Banking service at https://www.smile.co.uk. You will need either Crypt::SSLeay or IO::Socket::SSL installed for HTTPS support to work. WWW::Mechanize and HTML::TableExtract are required.

CLASS METHODS

check_balance check_balance( sortCode => 'xxxxxx', accountNumber => 'xxxxxxxx', passNumber => 'xxxx', memorableDate => 'xx/xx/xxxx', lastSchool => 'xxxxxxxxxxxxxxxxxx', memorableName => 'xxxxxxxx', birthPlace => 'xxxxxx', firstSchool => 'xxxxxxxxxxxx', );

  Returns an array of hash references. The hashes are keyed by 'account' and 'balance'.

AUTHOR

Richard Panman, <rpanman@cpan.org>

WARNINGS

This warning is from Simon Cozen's Finance::Bank::LloydsTSB, and seems just as apt here.

This is code for online banking, and that means that 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.

BUGS

Please report any bugs or feature requests to bug-finance-bank-smile at rt.cpan.org, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Finance-Bank-Smile. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.

SUPPORT

You can find documentation for this module with the perldoc command.

    perldoc Finance::Bank::Smile

You can also look for information at:

ACKNOWLEDGEMENTS

COPYRIGHT & LICENSE

Copyright 2007 Richard Panman, all rights reserved.

This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.

1 POD Error

The following errors were encountered while parsing the POD:

Around line 185:

Non-ASCII character seen before =encoding in '£123.45+'. Assuming UTF-8