Finance::Bank::easybank

Check your easybank accounts from Perl
Download

Finance::Bank::easybank Ranking & Summary

Advertisement

  • Rating:
  • License:
  • Perl Artistic License
  • Price:
  • FREE
  • Publisher Name:
  • Florian Helmberger
  • Publisher web site:
  • http://search.cpan.org/~florian/

Finance::Bank::easybank Tags


Finance::Bank::easybank Description

Check your easybank accounts from Perl Finance::Bank::easybank is a Perl module to check your easybank accounts from Perl.SYNOPSIS # look for this script in the examples directory of the # tar ball (balance.pl). use Finance::Bank::easybank; use strict; use warnings; my $agent = Finance::Bank::easybank->new( user => 'xxx', pass => 'xxx', return_floats => 1, accounts => , entries => , ); my @accounts = $agent->check_balance; my $entries = $agent->get_entries; foreach my $account (@accounts) { printf("s: %s ", $_->, $account->{$_->}) for(( , , , , )); printf("s: %.2f ", $_->, $account->{$_->}) for(( , )); print " Buchungzeilen: "; if(exists($entries->{$account->{account}})) { foreach my $row (@{$entries->{$account->{account}}}) { $row->{text} =~ s/(.{39}).*/$1.../; printf("- s Bs %6s %3s %9.2f ", (map { $row->{$_} } qw/nr date text value currency/), $row->{amount} ); } } print " "; }This module provides a basic interface to the online banking system of the easybank at http://www.easybank.at.Please note, that you will need either Crypt::SSLeay or IO::Socket::SSL installed for working HTTPS support of LWP. Requirements: · Perl


Finance::Bank::easybank Related Software