Bankscrap::Arquia

Bankscrap adapter for Arquia Banca (only tested with personal accounts).

Installation

Add this line to your application's Gemfile:

gem 'bankscrap-arquia'

And then execute:

$ bundle

Or install it yourself as:

$ gem install bankscrap-arquia

Usage

From terminal

Bank account balance

$ bankscrap balance Arquia --user YOUR_USER --password YOUR_PASSWORD --extra=nif:YOUR_NIF

Transactions

$ bankscrap transactions Arquia --user YOUR_USER --password YOUR_PASSWORD --extra=nif:YOUR_NIF

For more details on usage instructions please read Bankscrap readme.

From Ruby code

require 'bankscrap-arquia'
arquia = Bankscrap::Arquia::Bank.new(YOUR_USER, YOUR_PASSWORD, extra_args: {nif: YOUR_NIF})

Contributing

  1. Fork it ( https://github.com/bankscrap/bankscrap-arquia/fork )
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create a new Pull Request