Library provides simple API to download couple last transactions for accounts. Useful for integration with Ledger.
At the moment, library supports only downloading last couple transactions.
from lloyds import LloydsBank
bank = LloydsBank()
bank.login('user id', 'password', 'secret')
for account_url in bank.accounts:
for transaction in bank.get_transactions(account_url):
print transaction
Written by Izidor Matušov and licensed under MIT license.