Finance-Card-Citibank

 view release on metacpan or  search on metacpan

README  view on Meta::CPAN

          password => "12345",
      );

      foreach (@accounts) {
          printf "%20s : %8s / %8s : USD %9.2f\n",
          $_->name, $_->sort_code, $_->account_no, $_->balance;
      }

DESCRIPTION
    This module provides a rudimentary interface to Citigroup's credit card
    balances. You will need either "Crypt::SSLeay" or "IO::Socket::SSL"
    installed for HTTPS support to work. Version 2.01 was a re-write to use
    the OFX interface rather than screen scraping. This should make the
    module more stable as the screen scrapping method required updates
    whenever there were changes to Citigroup's site.

CLASS METHODS
  check_balance()
      check_balance( usename => $u, password => $p )

    Return an array of account objects, one for each of your bank accounts.

lib/Finance/Card/Citibank.pm  view on Meta::CPAN

  );

  foreach (@accounts) {
      printf "%20s : %8s / %8s : USD %9.2f\n",
      $_->name, $_->sort_code, $_->account_no, $_->balance;
  }
  
=head1 DESCRIPTION

This module provides a rudimentary interface to Citigroup's credit card
balances.  You will need either C<Crypt::SSLeay> or C<IO::Socket::SSL>
installed for HTTPS support to work. Version 2.01 was a re-write to 
use the OFX interface rather than screen scraping. This should make
the module more stable as the screen scrapping method required updates
whenever there were changes to Citigroup's site.

=head1 CLASS METHODS

=head2 check_balance()

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



( run in 1.009 second using v1.01-cache-2.11-cpan-4d50c553e7e )