galicia-parser

1.1.8 • Public • Published

galicia-parser -- A node.js module to download a CSV file of your transactions from Galicia Office Banking

This node.js module will allow you to login to Galicia Office Banking and download them in CSV format, and then do whatever you want with it.

HOW TO USE

var galiciaParser = require('galicia-parser');

var galiciaParserOptions = {
    getCSVInterval: 10, //get CSV every 10 minutes
    username: 'MyGaliciaOfficeUsernameReadOnly', // Office banking username
    password: 'MyGaliciaOfficePassword' // Office banking password
};

var callback = function(err, result) {
    if (err) {
        console.error(err);
    } else {
        // Process the CSV output however you want
    }
};

galiciaParser.start(galiciaParserOptions, callback);

FEEDBACK

Please send any feedback to filotti@gmail.com

Dependencies (4)

Dev Dependencies (0)

    Package Sidebar

    Install

    npm i galicia-parser

    Weekly Downloads

    9

    Version

    1.1.8

    License

    none

    Unpacked Size

    27.1 kB

    Total Files

    12

    Last publish

    Collaborators

    • filotti