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

NAME

Finance::Bank::Fubon::TW - Check Fubon eBank accounts from Perl

SYNOPSIS

    use Finance::Bank::Fubon::TW;
    foreach ( Finance::Bank::Fubon::TW->check_balance(
        username  => $username,
        password  => $password,
    )) {
        print "[", $_->name, ': $', $_->balance, "]\n";
        print join("\t", split(/,/, $_->statement));
    }

DESCRIPTION

This module provides a rudimentary interface to the Fubon eBank banking system at http://www.fubonbank.com.tw/ebank.htm.

You will need either Crypt::SSLeay or IO::Socket::SSL installed for HTTPS support to work with LWP.

CLASS METHODS

    check_balance(username => $u, password => $p)

Return a list of account objects, one for each of your bank accounts.

ACCOUNT OBJECT METHODS

    $ac->name
    $ac->account_no

Return the name of the account and the account number.

    $ac->balance

Return the balance as a signed floating point value.

    $ac->statement

Return a mini-statement as a line-separated list of transactions. Each transaction is a comma-separated list. WARNING: this interface is currently only useful for display, and hence may change in later versions of this module.

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

Autrijus Tang <autrijus@autrijus.org>

Based on Finance::Bank::LloydTSB by Simon Cozens simon@cpan.org.

COPYRIGHT

Copyright 2003 by Autrijus Tang <autrijus@autrijus.org>.

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

See http://www.perl.com/perl/misc/Artistic.html