A Python wrapper for the newly released API for up.com.au
Set the environment variable UP_TOKEN with your personal access token from https://developer.up.com.au/
>>> import upbank
>>> accounts = upbank.Accounts()
>>> print(accounts)
<[<Up Account (TRANSACTIONAL): AUD1>, <Savings (SAVER): AUD1>]>
>>> transactions = accounts[0].transactions
>>> print(transactions[0])
<Merchant: AUD-10.55 2020-07-27T22:37:26+10:00>
- Webhook creation and log retrieval
- Creating a test server to receive json requests? (probably out of scope)
- Creating and retrieving the data for atomic objects (transactions, accounts, webhooks) by ID