Defines base class for pydantic baser serializer
Project description
This module is a technical module that define a new abstract class named PydandicModelSerializer that inherit from odoo.addons.connector_search_engine.tools.serializer.ModelSerializer
This new class define a new abstract method get_model_class. This method is used by the index to get the Pydantic model class to use to generate the json schema.
On the index form, if the serializer is a PydanticModelSerializer, a field is displayed to display the related json schema and therefore provide documentation about the fields exported and their characteristics.
Table of contents
Use Cases / Context
When you export records to a search engine, it’s common to want to provides documentation about the fields exported and their characteristics.
When the serializer used to export the records is a Pydantic model, you can use the json schema generated by Pydantic to provide this documentation.
Usage
When you define a serializer based on a Pydantic model, your serializer class must inherit from PydanticModelSerializer and implement the method get_model_class to take advantage of the functionality provided by this module.
Example:
from typing import Type
from pydantic import BaseModel
from odoo.addons.search_engine_serialize_pydantic.tools.serializer import (
PydanticModelSerializer,
)
class MyModel(BaseModel):
name: str
description: str
def record_to_model(self, record: Model) -> dict:
return cls(
name=record.name,
description=record.description,
)
class MyModelSerializer(PydanticModelSerializer):
def get_model_class(self) -> Type[MyModel]:
return MyModel
def serialize(self, record: Model) -> dict:
model: MyModel = self.get_model_class().record_to_model(record)
return model.model_dump()
Known issues / Roadmap
Add dedicated widget to display in a user friendly way the json schema generated by the serializer on the index form.
Bug Tracker
Bugs are tracked on GitHub Issues. In case of trouble, please check there if your issue has already been reported. If you spotted it first, help us to smash it by providing a detailed and welcomed feedback.
Do not contact contributors directly about support or help with technical issues.
Credits
Contributors
Laurent Mignon laurent.mignon@acsone.eu (https://www.acsone.eu/)
Other credits
The development of this module has been financially supported by:
(ALCYON Belux)[https://www.alcyonbelux.be/fr/]
Maintainers
This module is maintained by the OCA.
OCA, or the Odoo Community Association, is a nonprofit organization whose mission is to support the collaborative development of Odoo features and promote its widespread use.
Current maintainer:
This module is part of the OCA/search-engine project on GitHub.
You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distribution
File details
Details for the file odoo_addon_search_engine_serializer_pydantic-16.0.1.0.0.4-py3-none-any.whl
.
File metadata
- Download URL: odoo_addon_search_engine_serializer_pydantic-16.0.1.0.0.4-py3-none-any.whl
- Upload date:
- Size: 28.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.8.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 48fd8ea400b72851ef217e0b6cd22930ccca09ae1a98c174eeb5c929a4b8d9c3 |
|
MD5 | 87b561d7495fff2c591c0c369e6d79a7 |
|
BLAKE2b-256 | 1663dc62e2bae6d5c15e43e26ccf3048a84ad9e93040e0ebeb4332ce6b02d0dc |