Metadata-Version: 2.4
Name: openocean
Version: 0.2.8
Summary: Package for OpenOceanNetwork
Requires-Python: >=3.12
Provides-Extra: client
Requires-Dist: httpx>=0.28.1; extra == 'client'
Provides-Extra: db
Requires-Dist: sqlalchemy>=2.0.49; extra == 'db'
Description-Content-Type: text/markdown

# OpenOcean

## Usage

```python

from oo import OpenOceanClient

async with OpenOceanClient(token=token) as client:
    position_dtos = await client.get_position(decode=True)
```
