inspect
LiftedRODict ¶
Bases: type
Metaclass for classes providing dict keys as attributes.
Mostly for aesthetic reasons and to be used for things where the dict is actually a fixed lookup table.
We don't provide explicit keys
/values
/items
, because
these could be key names in the dict.
You can use iter
to go through the keys and use dict-like
access, if dynamic iteration is needed.
Source code in src/metador_core/schema/inspect.py
14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 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 73 |
|
WrappedLiftedDict ¶
Bases: ObjectProxy
Wrap values returned by a LiftedRODict.
Source code in src/metador_core/schema/inspect.py
88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 |
|
FieldInspector
dataclass
¶
Basic field inspector carrying type and description of a field.
Source code in src/metador_core/schema/inspect.py
106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 |
|
lift_dict ¶
lift_dict(name, dct, *, keys = None, repr = None)
Return LiftedRODict class based on passed dict.
Source code in src/metador_core/schema/inspect.py
76 77 78 79 80 81 82 83 84 85 |
|
make_field_inspector ¶
make_field_inspector(
model: Type[BaseModel],
prop_name: str,
*,
bound: Optional[Type[BaseModel]] = BaseModel,
key_filter: Optional[Callable[[str], bool]],
i_cls: Optional[Type[FieldInspector]] = FieldInspector
) -> Type[LiftedRODict]
Create a field inspector class for the given model.
This can be used for introspection about fields and also enables users to access subschemas without extra imports, improving decoupling of plugins and packages.
To be used in a metaclass for a custom top level model.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
model |
Type[BaseModel]
|
Class for which to return the inspector |
required |
prop_name |
str
|
Name of the metaclass property that wraps this function |
required |
i_cls |
Optional[Type[FieldInspector]]
|
Optional subclass of FieldInspector to customize it |
FieldInspector
|
bound |
Optional[Type[BaseModel]]
|
Top level class using the custom metaclass that uses this function |
BaseModel
|
key_filter |
Optional[Callable[[str], bool]]
|
Predicate used to filter the annotations that are to be inspectable |
required |
Returns: A fresh inspector class for the fields.
Source code in src/metador_core/schema/inspect.py
141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 |
|