A collection of strategies to access online bank accounts to obtain balance and transaction details.
- Barclay's Bank => Barclays
- Barclaycard UK => BarclaycardUK
- Capital One UK => CapitalOneUK
- Lloyds TSB UK => LloydsTSBUK
####Extras
- Credit Expert UK => CreidtExpertUK
Add this line to your application's Gemfile:
gem 'banker'
And then execute:
$ bundle
Or install it yourself as:
$ gem install banker
user_params = {
surname: "Bloggs",
username: "Bloggs123",
password: "password",
memorable_word: "superduper",
card_number: 4111111111111111,
date_of_birth: Date.parse('2012-01-01')
}
Get the balance in pennies of the account.
# Barclays Bank
Banker::Barclays.new(user_params).accounts.first
# => <Banker::Account @name="Barclays Bank", @uid="cdd5f8e1c6e441fd9aac2786ca38c835", @amount=130000, @limit=-150000, @currency="GBP">
Extra strategies
# Credit Expert UK
Banker::CreditExpertUK.new(user_params).score #=> 800
- Mechanize
- OFX
- Python Bank Scraper from MoneyToolKit
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Added some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request
This library is distributed under the MIT license. Please see the LICENSE file.