Skip to content

Latest commit

 

History

History
27 lines (18 loc) · 723 Bytes

README.md

File metadata and controls

27 lines (18 loc) · 723 Bytes

Unofficial scrapper API for Lloyds bank transactions

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.

Sample usage

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

Similar projects

Credits

Written by Izidor Matušov and licensed under MIT license.