Note: This is an unofficial, community-maintained Python SDK for the FinWise API. It is not affiliated with, endorsed by, or officially supported by FinWise.
A simple Python client for the FinWise API.
pip install finwise-pythonfrom finwise import FinWise
# Initialize the client
client = FinWise(api_key="your-api-key")
# Or use the FINWISE_API_KEY environment variable
client = FinWise()
# List all accounts
accounts = client.accounts.list()
for account in accounts.data:
print(f"{account.name}: {account.currency} {account.balance}")- Automatic retries with exponential backoff
- Pagination support
- Context manager support
- Full type hints
For full documentation, see rameezk.github.io/finwise-python.
MIT License - see LICENSE for details.