Metadata-Version: 2.4
Name: GetSequenceIoApiClient
Version: 0.1.2
Summary: Async Python client for Sequence financial orchestration platform API.
Author-email: Dyllan Macias <DellanX@Live.com>
License: MIT License
        
        Copyright (c) 2025 Dyllan Macias
        
        Permission is hereby granted, free of charge, to any person obtaining a copy
        of this software and associated documentation files (the "Software"), to deal
        in the Software without restriction, including without limitation the rights
        to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
        copies of the Software, and to permit persons to whom the Software is
        furnished to do so, subject to the following conditions:
        
        The above copyright notice and this permission notice shall be included in all
        copies or substantial portions of the Software.
        
        THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
        OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
        SOFTWARE.
        
Project-URL: Homepage, https://github.com/DellanX/GetSequenceIoApiClient
Project-URL: Source, https://github.com/DellanX/GetSequenceIoApiClient
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: aiohttp>=3.8.0
Provides-Extra: test
Requires-Dist: pytest; extra == "test"
Requires-Dist: pytest-cov; extra == "test"
Requires-Dist: pytest-asyncio; extra == "test"
Dynamic: license-file

# GetSequenceIoApiClient

A Python client for the Sequence financial orchestration platform API.

## Features
- Async API access to Sequence accounts
- Pod, Income Source, Liability, Investment, and External account helpers
- Designed for integration with Home Assistant and other Python apps

## Installation
```bash
pip install GetSequenceIoApiClient
```

## Usage
```python
import aiohttp
from GetSequenceIoApiClient.client import SequenceApiClient

async def main():
    async with aiohttp.ClientSession() as session:
        client = SequenceApiClient(session, "YOUR_ACCESS_TOKEN")
        accounts = await client.async_get_accounts()
        print(accounts)
```

## Author
Dyllan Macias (@DellanX)

## License
See LICENSE file.
