pydantic
create_pydantic_field(field_name, model, model_field)
Registers pydantic field on through model that leads to passed model and is registered as field_name passed.
Through model is fetched from through attributed on passed model_field.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
field_name |
str
|
field name to register |
required |
model |
Type[Model]
|
type of field to register |
required |
model_field |
ManyToManyField
|
relation field from which through model is extracted |
required |
Source code in ormar\models\helpers\pydantic.py
16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 |
|
get_potential_fields(attrs)
Gets all the fields in current class namespace that are Fields.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
attrs |
Union[Dict, MappingProxyType]
|
current class namespace |
required |
Returns:
Type | Description |
---|---|
Dict
|
extracted fields that are ormar Fields |
Source code in ormar\models\helpers\pydantic.py
109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 |
|
get_pydantic_base_orm_config()
Returns empty pydantic Config with orm_mode set to True.
Returns:
Type | Description |
---|---|
pydantic Config
|
empty default config with orm_mode set. |
Source code in ormar\models\helpers\pydantic.py
98 99 100 101 102 103 104 105 106 |
|
merge_or_generate_pydantic_config(attrs, name)
Checks if the user provided pydantic Config, and if he did merges it with the default one.
Updates the attrs in place with a new config.
Source code in ormar\models\helpers\pydantic.py
75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 |
|
populate_pydantic_default_values(attrs)
Extracts ormar fields from annotations (deprecated) and from namespace dictionary of the class. Fields declared on model are all subclasses of the BaseField class.
Trigger conversion of ormar field into pydantic FieldInfo, which has all needed parameters saved.
Overwrites the annotations of ormar fields to corresponding types declared on ormar fields (constructed dynamically for relations). Those annotations are later used by pydantic to construct it's own fields.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
attrs |
Dict
|
current class namespace |
required |
Returns:
Type | Description |
---|---|
Tuple[Dict, Dict]
|
namespace of the class updated, dict of extracted model_fields |
Source code in ormar\models\helpers\pydantic.py
38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 |
|
remove_excluded_parent_fields(model)
Removes pydantic fields that should be excluded from parent models
Parameters:
Name | Type | Description | Default |
---|---|---|---|
model |
Type[Model]
|
|
required |
Source code in ormar\models\helpers\pydantic.py
128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 |
|