0.0.1 • Published 6 years ago

tangerine-bank v0.0.1

Weekly downloads
2
License
MIT
Repository
github
Last release
6 years ago
 _____                           _            
|_   _|                         (_)           
  | | __ _ _ __   __ _  ___ _ __ _ _ __   ___ 
  | |/ _` | '_ \ / _` |/ _ \ '__| | '_ \ / _ \
  | | (_| | | | | (_| |  __/ |  | | | | |  __/
  \_/\__,_|_| |_|\__, |\___|_|  |_|_| |_|\___|
                  __/ |                       
                 |___/                        

API and scraper for the Tangerine Bank, based off of the Python version by kevinjqiu https://github.com/kevinjqiu/tangerine/

Install

npm install tangerine --save

Usage

This module is still under development. Most methods from the Python version have been rewritten to JavaScript, but only login and list accounts has been tested.

Authentication

Currently only authentication method is by passing an object with the needed login values or a string to a JSON file which contains the files.

const Tangerine = require('Tangerine');

Tangerine.login('login.json').then(result => {
	console.log(result);
});

List Accounts

const Tangerine = require('Tangerine');

Tangerine.login('login.json').then(result => {
	Tangerine.list_accounts().then(result => {
		console.log(result);
	});
});

Contribution

There is still a lot to do to make this module ship shape. Please feel free to send a pull request.

Licence

MIT