models
field_origins ¶
field_origins(
m: Type[BaseModel], name: str
) -> Iterator[Type[BaseModel]]
Return sequence of bases where the field type hint was defined / overridden.
Source code in src/metador_core/util/models.py
9 10 11 12 13 |
|
updated_fields ¶
updated_fields(m: Type[BaseModel]) -> Set[str]
Return subset of fields that are added or overridden by a new type hint.
Source code in src/metador_core/util/models.py
16 17 18 |
|
field_atomic_types ¶
field_atomic_types(
mf: ModelField, *, bound: ModelField = object
) -> Iterator[Type]
Return sequence of nested atomic types in the hint of given field.
Source code in src/metador_core/util/models.py
26 27 28 |
|
atomic_types ¶
atomic_types(
m: BaseModel, *, bound: BaseModel = object
) -> Dict[str, Set[Type]]
Return dict from field name to model classes referenced in the field definition.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
m |
BaseModel
|
Pydantic model |
required |
bound |
object
|
If provided, will be used to filter results to contain only subclasses of the bound. |
object
|
Source code in src/metador_core/util/models.py
31 32 33 34 35 36 37 38 39 |
|
field_parent_type ¶
field_parent_type(
m: Type[BaseModel], name: str
) -> Type[BaseModel]
Return type of field assigned in the next parent that provides a type hint.
Source code in src/metador_core/util/models.py
42 43 44 45 46 47 |
|