🚀. Socket Launch Week Day 3:Socket Firewall Now Blocks Malicious VS Code and Open VSX Extensions.Learn more
Sign In

erste-bank-client

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

erste-bank-client

A node-js module for erste bank to retrieve transactions

latest
npmnpm
Version
1.0.8
Version published
Weekly downloads
17
-5.56%
Maintainers
1
Weekly downloads
 
Created
Source

erste-bank-client node js client

A node-js module for erste bank to retrieve transactions. It's based on the python version of https://github.com/angelol/erste-bank-client. Uses "George"'s API to retrieve data.

npm install erste-bank-client

How to use:

var ErsteBankClient = require('erste-bank-client');

var from = new Date();
from.setDate(from.getDay()-10);
var to = new Date();
var ebc = new ErsteBankClient({
    username: '',
    password: '',
    iban: 'AT6...',
    account_id: '' // provide to save one additional call 
});
ebc.getDataExport(from, to) 
.then(function(result) {
       console.log(result);
})

Keywords

erste

FAQs

Package last updated on 15 May 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts