Metadata-Version: 2.4
Name: godoo-introspection
Version: 0.2.1
Summary: Schema discovery and codegen for Odoo models
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 :: 2 - Pre-Alpha
Classifier: Framework :: AsyncIO
Classifier: Framework :: Odoo
Classifier: Intended Audience :: Developers
Classifier: Typing :: Typed
Requires-Python: >=3.14
Requires-Dist: godoo-client>=0.1.0
Description-Content-Type: text/markdown

# godoo-introspection

Schema discovery and codegen for Odoo models

> **Pre-Alpha:** This package is in early development. The API may change without notice and not all advertised features are implemented yet.

## Install

```bash
pip install godoo-introspection
```

## Quick start

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

async def main():
    client = await create_client()
    introspector = Introspector(client)
    schema = await introspector.get_schema("res.partner")
```

## Links

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