Skip to content

filotti/galicia-parser

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 

Repository files navigation

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

About

Login to Banco Galicia Argentina Home Office Banking and download a CSV of your transactions

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors