Skip to content

Latest commit

 

History

History
38 lines (28 loc) · 1.06 KB

README.md

File metadata and controls

38 lines (28 loc) · 1.06 KB

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