Metadata-Version: 2.4
Name: finwise-python
Version: 1.4.0
Summary: Unofficial Python SDK for the FinWise API
Project-URL: Homepage, https://github.com/rameezk/finwise-python
Project-URL: Documentation, https://rameezk.github.io/finwise-python
Project-URL: Repository, https://github.com/rameezk/finwise-python
Project-URL: Official API Docs, https://finwiseapp.io/docs/api
Author: Rameez Khan
License-Expression: MIT
License-File: LICENSE
Keywords: api,banking,budgeting,finance,finwise,sdk
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Topic :: Office/Business :: Financial
Classifier: Typing :: Typed
Requires-Python: >=3.11
Requires-Dist: httpx<1.0.0,>=0.25.0
Requires-Dist: pydantic<3.0.0,>=2.0.0
Provides-Extra: dev
Requires-Dist: mypy>=1.0.0; extra == 'dev'
Requires-Dist: pytest-cov>=4.0.0; extra == 'dev'
Requires-Dist: pytest>=7.0.0; extra == 'dev'
Requires-Dist: respx>=0.20.0; extra == 'dev'
Requires-Dist: ruff>=0.1.0; extra == 'dev'
Provides-Extra: docs
Requires-Dist: mkdocs-material>=9.0.0; extra == 'docs'
Requires-Dist: mkdocs>=1.5.0; extra == 'docs'
Description-Content-Type: text/markdown

# FinWise Python SDK (Unofficial)

![Unofficial](https://img.shields.io/badge/Status-Unofficial-orange?style=for-the-badge)
![PyPI - Version](https://img.shields.io/pypi/v/finwise-python?style=for-the-badge)
![PyPI - Downloads](https://img.shields.io/pypi/dm/finwise-python?style=for-the-badge)
![PyPI - License](https://img.shields.io/pypi/l/finwise-python?style=for-the-badge&color=blue)

> **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](https://finwiseapp.io/docs/api).

## Installation

```bash
pip install finwise-python
```

## Quick Start

```python
from 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}")
```

## Features

- Automatic retries with exponential backoff
- Pagination support
- Context manager support
- Full type hints

## Documentation

For full documentation, see [rameezk.github.io/finwise-python](https://rameezk.github.io/finwise-python).

## Links

- [Documentation](https://rameezk.github.io/finwise-python)
- [Official FinWise API Docs](https://finwiseapp.io/docs/api)
- [PyPI](https://pypi.org/project/finwise-python/)
- [GitHub](https://github.com/rameezk/finwise-python)

## License

MIT License - see [LICENSE](LICENSE) for details.
