Skip to content

rameezk/investec-python

Repository files navigation

investec-python

A Python wrapper for the Investec Banking API


PyPI - Version PyPI - Downloads PyPI - License

🛣️ Project Roadmap

📘 Documentation


🚀 Quickstart

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.

Goals

  • Interact with the Investec Banking API in the most Pythonic way possible
  • 100% feature parity with the Investec Banking API