Metadata-Version: 2.4
Name: godoo-client
Version: 0.2.1
Summary: Async Python client for Odoo JSON-RPC
Project-URL: Documentation, https://www.marcfargas.com/~odoopy/
Project-URL: Repository, https://github.com/godoo-dev/godoo-py
Project-URL: Issues, https://github.com/godoo-dev/godoo-py/issues
Author-email: Marc Fargas <marc@marcfargas.com>
License-Expression: LGPL-3.0-or-later
Classifier: Development Status :: 4 - Beta
Classifier: Framework :: AsyncIO
Classifier: Framework :: Odoo
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Libraries
Classifier: Typing :: Typed
Requires-Python: >=3.14
Requires-Dist: httpx>=0.27
Description-Content-Type: text/markdown

# godoo-client

Async Python client for Odoo JSON-RPC

## Install

```bash
pip install godoo-client
```

## Quick start

```python
import asyncio
from godoo.client import create_client

async def main():
    client = await create_client()  # reads ODOO_URL / ODOO_DB / ODOO_USER / ODOO_PASSWORD
    partners = await client.search_read("res.partner", [], fields=["name"])
    await client.aclose()
```

## Links

- [Documentation](https://www.marcfargas.com/~odoopy/)
- [GitHub repository](https://github.com/godoo-dev/godoo-py)
- License: LGPL-3.0-or-later
