model
Model
Bases: ModelRow
Source code in ormar\models\model.py
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 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 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 139 140 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 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 |
|
delete()
async
Removes the Model instance from the database.
Sends pre_delete and post_delete signals.
Sets model save status to False.
Note it does not delete the Model itself (python object). So you can delete and later save (since pk is deleted no conflict will arise) or update and the Model will be saved in database again.
Returns:
Type | Description |
---|---|
int
|
number of deleted rows (for some backends) |
Source code in ormar\models\model.py
259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 |
|
load()
async
Allow to refresh existing Models fields from database. Be careful as the related models can be overwritten by pk_only models in load. Does NOT refresh the related models fields if they were loaded before.
Returns:
Type | Description |
---|---|
Model
|
reloaded Model |
Raises:
Type | Description |
---|---|
NoMatch
|
If given pk is not found in database. |
Source code in ormar\models\model.py
282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 |
|
load_all(follow=False, exclude=None, order_by=None)
async
Allow to refresh existing Models fields from database. Performs refresh of the related models fields.
By default, loads only self and the directly related ones.
If follow=True is set it loads also related models of related models.
To not get stuck in an infinite loop as related models also keep a relation to parent model visited models set is kept.
That way already visited models that are nested are loaded, but the load do not follow them inside. So Model A -> Model B -> Model C -> Model A -> Model X will load second Model A but will never follow into Model X. Nested relations of those kind need to be loaded manually.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
order_by |
Union[List, str, None]
|
columns by which models should be sorted |
None
|
exclude |
Union[List, str, Set, Dict, None]
|
related models to exclude |
None
|
follow |
bool
|
flag to trigger deep save - by default only directly related models are saved with follow=True also related models of related models are saved |
False
|
Returns:
Type | Description |
---|---|
Model
|
reloaded Model |
Raises:
Type | Description |
---|---|
NoMatch
|
If given pk is not found in database. |
Source code in ormar\models\model.py
303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 |
|
save()
async
Performs a save of given Model instance. If primary key is already saved, db backend will throw integrity error.
Related models are saved by pk number, reverse relation and many to many fields are not saved - use corresponding relations methods.
If there are fields with server_default set and those fields are not already filled save will trigger also a second query to refreshed the fields populated server side.
Does not recognize if model was previously saved. If you want to perform update or insert depending on the pk fields presence use upsert.
Sends pre_save and post_save signals.
Sets model save status to True.
Returns:
Type | Description |
---|---|
Model
|
saved Model |
Source code in ormar\models\model.py
53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 |
|
save_related(follow=False, save_all=False, relation_map=None, exclude=None, update_count=0, previous_model=None, relation_field=None)
async
Triggers a upsert method on all related models if the instances are not already saved. By default saves only the directly related ones.
If follow=True is set it saves also related models of related models.
To not get stuck in an infinite loop as related models also keep a relation to parent model visited models set is kept.
That way already visited models that are nested are saved, but the save do not follow them inside. So Model A -> Model B -> Model A -> Model C will save second Model A but will never follow into Model C. Nested relations of those kind need to be persisted manually.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
relation_field |
Optional[ForeignKeyField]
|
field with relation leading to this model |
None
|
previous_model |
Optional[Model]
|
previous model from which method came |
None
|
exclude |
Union[Set, Dict, None]
|
items to exclude during saving of relations |
None
|
relation_map |
Optional[Dict]
|
map of relations to follow |
None
|
save_all |
bool
|
flag if all models should be saved or only not saved ones |
False
|
follow |
bool
|
flag to trigger deep save - by default only directly related models are saved with follow=True also related models of related models are saved |
False
|
update_count |
int
|
internal parameter for recursive calls - number of updated instances |
0
|
Returns:
Type | Description |
---|---|
int
|
number of updated/saved models |
Source code in ormar\models\model.py
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 139 140 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 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 |
|
update(_columns=None, **kwargs)
async
Performs update of Model instance in the database. Fields can be updated before or you can pass them as kwargs.
Sends pre_update and post_update signals.
Sets model save status to True.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
_columns |
Optional[List[str]]
|
list of columns to update, if None all are updated |
None
|
kwargs |
Any
|
list of fields to update as field=value pairs |
{}
|
Returns:
Type | Description |
---|---|
Model
|
updated Model |
Raises:
Type | Description |
---|---|
ModelPersistenceError
|
If the pk column is not set |
Source code in ormar\models\model.py
216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 |
|
upsert(**kwargs)
async
Performs either a save or an update depending on the presence of the pk. If the pk field is filled it's an update, otherwise the save is performed. For save kwargs are ignored, used only in update if provided.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
kwargs |
Any
|
list of fields to update |
{}
|
Returns:
Type | Description |
---|---|
Model
|
saved Model |
Source code in ormar\models\model.py
29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 |
|