NAME
Finance::Bank::ES::Cajamadrid - Check your Cajamadrid bank accounts from Perl
SYNOPSIS
use Finance::Bank::ES::Cajamadrid;
my @cuentas = Finance::Bank::ES::Cajamadrid->ver_saldos(
dni => "xxxxxxxx",
pin => "****"
);
foreach (@cuentas) {
print "Cuenta: ".$_->{numero}." Saldo: ".$_->{saldo}."\n";
}
DESCRIPTION
Check your Cajamadrid bank accounts from Perl. It only checks balances, but future versions will allow you to do more things. Chequea el saldo de tus cuentas en Cajamadrid con Perl. Ahora solamente chequea saldos, pero en futuras versiones se permitiran mas cosas. Me encantaria saber que usas el modulo! Enviame un mail!
EXPORT
None by default.
REQUIRE
WWW::Mechanize
WARNING
This warning is from Simon Cozens' Finance::Bank::LloydsTSB
, and seems just as apt here.
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.
Ten cuidado con el modulo. Examina el fuente para que veas que no hago cosas raras. Pasalo a traves de un proxy para que veas que no me conecto a sitios raros.
SEE ALSO
Finance::Bank::*
AUTHOR
Bruno Diaz Briere bruno.diaz@gmx.net
COPYRIGHT AND LICENSE
Copyright (C) 2004 by Bruno Diaz Briere
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.8.1 or, at your option, any later version of Perl 5 you may have available.