A Python wrapper for the Investec Banking API
Install it:
pip install investec-python
Run it:
from investec_python import Investec
investec = Investec(use_sandbox=True)
accounts = investec.accounts.list()
for account in accounts:
account_balance = account.balance()
account_transactions = account.transactions()
For interacting with real account data see here.
- Interact with the Investec Banking API in the most Pythonic way possible
- 100% feature parity with the Investec Banking API