fields
Module with classes and constructors for ormar Fields. Base Fields types (like String, Integer etc.) as well as relation Fields (ForeignKey, ManyToMany). Also a definition for custom CHAR based sqlalchemy UUID field
BaseField
Bases: FieldInfo
BaseField serves as a parent class for all basic Fields in ormar. It keeps all common parameters available for all fields as well as set of useful functions.
All values are kept as class variables, ormar Fields are never instantiated. Subclasses pydantic.FieldInfo to keep the fields related to pydantic field types like ConstrainedStr
Source code in ormar\fields\base.py
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 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 |
|
construct_constraints()
Converts list of ormar constraints into sqlalchemy ForeignKeys. Has to be done dynamically as sqlalchemy binds ForeignKey to the table. And we need a new ForeignKey for subclasses of current model
Returns:
Type | Description |
---|---|
List[sqlalchemy.schema.ForeignKey]
|
List of sqlalchemy foreign keys - by default one. |
Source code in ormar\fields\base.py
236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 |
|
default_value(use_server=False)
Returns a FieldInfo instance with populated default (static) or default_factory (function). If the field is a autoincrement primary key the default is None. Otherwise field have to has either default, or default_factory populated.
If all default conditions fail None is returned.
Used in converting to pydantic FieldInfo.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
use_server |
bool
|
flag marking if server_default should be treated as default value, default False |
False
|
Returns:
Type | Description |
---|---|
Optional[pydantic.FieldInfo]
|
returns a call to pydantic.Field which is returning a FieldInfo instance |
Source code in ormar\fields\base.py
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 |
|
evaluate_forward_ref(globalns, localns)
Evaluates the ForwardRef to actual Field based on global and local namespaces
Parameters:
Name | Type | Description | Default |
---|---|---|---|
globalns |
Any
|
global namespace |
required |
localns |
Any
|
local namespace |
required |
Returns:
Type | Description |
---|---|
None
|
None |
Source code in ormar\fields\base.py
360 361 362 363 364 365 366 367 368 369 370 |
|
expand_relationship(value, child, to_register=True)
Function overwritten for relations, in basic field the value is returned as is. For relations the child model is first constructed (if needed), registered in relation and returned. For relation fields the value can be a pk value (Any type of field), dict (from Model) or actual instance/list of a "Model".
Parameters:
Name | Type | Description | Default |
---|---|---|---|
value |
Any
|
a Model field value, returned untouched for non relation fields. |
required |
child |
Union[Model, NewBaseModel]
|
a child Model to register |
required |
to_register |
bool
|
flag if the relation should be set in RelationshipManager |
True
|
Returns:
Type | Description |
---|---|
Any
|
returns untouched value for normal fields, expands only for relations |
Source code in ormar\fields\base.py
314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 |
|
get_alias()
Used to translate Model column names to database column names during db queries.
Returns:
Type | Description |
---|---|
str
|
returns custom database column name if defined by user, otherwise field name in ormar/pydantic |
Source code in ormar\fields\base.py
115 116 117 118 119 120 121 122 123 |
|
get_column(name)
Returns definition of sqlalchemy.Column used in creation of sqlalchemy.Table. Populates name, column type constraints, as well as a number of parameters like primary_key, index, unique, nullable, default and server_default.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
name |
str
|
name of the db column - used if alias is not set |
required |
Returns:
Type | Description |
---|---|
sqlalchemy.Column
|
actual definition of the database column as sqlalchemy requires. |
Source code in ormar\fields\base.py
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 |
|
get_default(use_server=False, call_default_factory=True)
Return default value for a field. If the field is Callable the function is called and actual result is returned. Used to populate default_values for pydantic Model in ormar Model Metaclass.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
use_server |
bool
|
flag marking if server_default should be treated as default value, default False |
False
|
Returns:
Type | Description |
---|---|
Any
|
default value for the field if set, otherwise implicit None |
Source code in ormar\fields\base.py
170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 |
|
get_pydantic_default()
Generates base pydantic.FieldInfo with only default and optionally required to fix pydantic Json field being set to required=False. Used in an ormar Model Metaclass.
Returns:
Type | Description |
---|---|
pydantic.FieldInfo
|
instance of base pydantic.FieldInfo |
Source code in ormar\fields\base.py
125 126 127 128 129 130 131 132 133 134 135 136 137 |
|
get_related_name()
Returns name to use for reverse relation.
It's either set as related_name
or by default it's owner model. get_name + 's'
Returns:
Type | Description |
---|---|
str
|
name of the related_name or default related name. |
Source code in ormar\fields\base.py
372 373 374 375 376 377 378 379 |
|
has_default(use_server=True)
Checks if the field has default value set.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
use_server |
bool
|
flag marking if server_default should be treated as default value, default False |
True
|
Returns:
Type | Description |
---|---|
bool
|
result of the check if default value is set |
Source code in ormar\fields\base.py
209 210 211 212 213 214 215 216 217 218 219 220 221 |
|
has_unresolved_forward_refs()
Verifies if the filed has any ForwardRefs that require updating before the model can be used.
Returns:
Type | Description |
---|---|
bool
|
result of the check |
Source code in ormar\fields\base.py
350 351 352 353 354 355 356 357 358 |
|
is_auto_primary_key()
Checks if field is first a primary key and if it, it's than check if it's set to autoincrement. Autoincrement primary_key is nullable/optional.
Returns:
Type | Description |
---|---|
bool
|
result of the check for primary key and autoincrement |
Source code in ormar\fields\base.py
223 224 225 226 227 228 229 230 231 232 233 234 |
|
is_valid_uni_relation()
Checks if field is a relation definition but only for ForeignKey relation, so excludes ManyToMany fields, as well as virtual ForeignKey (second side of FK relation).
Is used to define if a field is a db ForeignKey column that should be saved/populated when dealing with internal/own Model columns only.
Returns:
Type | Description |
---|---|
bool
|
result of the check |
Source code in ormar\fields\base.py
100 101 102 103 104 105 106 107 108 109 110 111 112 113 |
|
set_self_reference_flag()
Sets self_reference
to True if field to and owner are same model.
Returns:
Type | Description |
---|---|
None
|
None |
Source code in ormar\fields\base.py
338 339 340 341 342 343 344 345 346 347 348 |
|
BigInteger
Bases: Integer
, int
BigInteger field factory that construct Field classes and populated their values.
Source code in ormar\fields\model_fields.py
545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 |
|
get_column_type(**kwargs)
classmethod
Return proper type of db column for given field type. Accepts required and optional parameters that each column type accepts.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
kwargs |
Any
|
key, value pairs of sqlalchemy options |
{}
|
Returns:
Type | Description |
---|---|
sqlalchemy Column
|
initialized column with proper options |
Source code in ormar\fields\model_fields.py
579 580 581 582 583 584 585 586 587 588 589 590 |
|
Boolean
Bases: ModelFieldFactory
, int
Boolean field factory that construct Field classes and populated their values.
Source code in ormar\fields\model_fields.py
332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 |
|
get_column_type(**kwargs)
classmethod
Return proper type of db column for given field type. Accepts required and optional parameters that each column type accepts.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
kwargs |
Any
|
key, value pairs of sqlalchemy options |
{}
|
Returns:
Type | Description |
---|---|
sqlalchemy Column
|
initialized column with proper options |
Source code in ormar\fields\model_fields.py
340 341 342 343 344 345 346 347 348 349 350 351 |
|
CheckColumns
Bases: CheckConstraint
Subclass of sqlalchemy.CheckConstraint. Used to avoid importing anything from sqlalchemy by user.
Note that some databases do not actively support check constraints such as MySQL.
Source code in ormar\fields\constraints.py
25 26 27 28 29 30 31 |
|
Date
Bases: ModelFieldFactory
, date
Date field factory that construct Field classes and populated their values.
Source code in ormar\fields\model_fields.py
389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 |
|
get_column_type(**kwargs)
classmethod
Return proper type of db column for given field type. Accepts required and optional parameters that each column type accepts.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
kwargs |
Any
|
key, value pairs of sqlalchemy options |
{}
|
Returns:
Type | Description |
---|---|
sqlalchemy Column
|
initialized column with proper options |
Source code in ormar\fields\model_fields.py
397 398 399 400 401 402 403 404 405 406 407 408 |
|
DateTime
Bases: ModelFieldFactory
, datetime
DateTime field factory that construct Field classes and populated their values.
Source code in ormar\fields\model_fields.py
354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 |
|
get_column_type(**kwargs)
classmethod
Return proper type of db column for given field type. Accepts required and optional parameters that each column type accepts.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
kwargs |
Any
|
key, value pairs of sqlalchemy options |
{}
|
Returns:
Type | Description |
---|---|
sqlalchemy Column
|
initialized column with proper options |
Source code in ormar\fields\model_fields.py
375 376 377 378 379 380 381 382 383 384 385 386 |
|
Decimal
Bases: ModelFieldFactory
, Decimal
Decimal field factory that construct Field classes and populated their values.
Source code in ormar\fields\model_fields.py
641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 |
|
get_column_type(**kwargs)
classmethod
Return proper type of db column for given field type. Accepts required and optional parameters that each column type accepts.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
kwargs |
Any
|
key, value pairs of sqlalchemy options |
{}
|
Returns:
Type | Description |
---|---|
sqlalchemy Column
|
initialized column with proper options |
Source code in ormar\fields\model_fields.py
684 685 686 687 688 689 690 691 692 693 694 695 696 697 |
|
validate(**kwargs)
classmethod
Used to validate if all required parameters on a given field type are set.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
kwargs |
Any
|
all params passed during construction |
{}
|
Source code in ormar\fields\model_fields.py
699 700 701 702 703 704 705 706 707 708 709 710 711 |
|
Enum
Bases: ModelFieldFactory
Enum field factory that construct Field classes and populated their values.
Source code in ormar\fields\model_fields.py
759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 |
|
Float
Bases: ModelFieldFactory
, float
Float field factory that construct Field classes and populated their values.
Source code in ormar\fields\model_fields.py
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 |
|
get_column_type(**kwargs)
classmethod
Return proper type of db column for given field type. Accepts required and optional parameters that each column type accepts.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
kwargs |
Any
|
key, value pairs of sqlalchemy options |
{}
|
Returns:
Type | Description |
---|---|
sqlalchemy Column
|
initialized column with proper options |
Source code in ormar\fields\model_fields.py
311 312 313 314 315 316 317 318 319 320 321 322 |
|
ForeignKeyField
Bases: BaseField
Actual class returned from ForeignKey function call and stored in model_fields.
Source code in ormar\fields\foreign_key.py
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 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 |
|
default_source_field_name()
Returns default target model name on through model.
Returns:
Type | Description |
---|---|
str
|
name of the field |
Source code in ormar\fields\foreign_key.py
360 361 362 363 364 365 366 367 |
|
default_target_field_name()
Returns default target model name on through model.
Returns:
Type | Description |
---|---|
str
|
name of the field |
Source code in ormar\fields\foreign_key.py
351 352 353 354 355 356 357 358 |
|
evaluate_forward_ref(globalns, localns)
Evaluates the ForwardRef to actual Field based on global and local namespaces
Parameters:
Name | Type | Description | Default |
---|---|---|---|
globalns |
Any
|
global namespace |
required |
localns |
Any
|
local namespace |
required |
Returns:
Type | Description |
---|---|
None
|
None |
Source code in ormar\fields\foreign_key.py
438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 |
|
expand_relationship(value, child, to_register=True)
For relations the child model is first constructed (if needed), registered in relation and returned. For relation fields the value can be a pk value (Any type of field), dict (from Model) or actual instance/list of a "Model".
Selects the appropriate constructor based on a passed value.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
value |
Any
|
a Model field value, returned untouched for non relation fields. |
required |
child |
Union[Model, NewBaseModel]
|
a child Model to register |
required |
to_register |
bool
|
flag if the relation should be set in RelationshipManager |
True
|
Returns:
Type | Description |
---|---|
Optional[Union["Model", List["Model"]]]
|
returns a Model or a list of Models |
Source code in ormar\fields\foreign_key.py
604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 |
|
get_model_relation_fields(use_alias=False)
Extract names of the database columns or model fields that are connected with given relation based on use_alias switch and which side of the relation the current field is - reverse or normal.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
use_alias |
bool
|
use db names aliases or model fields |
False
|
Returns:
Type | Description |
---|---|
Union[str, List[str]]
|
name or names of the related columns/ fields |
Source code in ormar\fields\foreign_key.py
372 373 374 375 376 377 378 379 380 381 382 383 384 385 |
|
get_related_field_alias()
Extract names of the related database columns or that are connected with given relation based to use as a target in filter clause.
Returns:
Type | Description |
---|---|
Union[str, Dict[str, str]]
|
name or names of the related columns/ fields |
Source code in ormar\fields\foreign_key.py
399 400 401 402 403 404 405 406 407 408 409 410 411 412 |
|
get_related_field_name()
Returns name of the relation field that should be used in prefetch query. This field is later used to register relation in prefetch query, populate relations dict, and populate nested model in prefetch query.
Returns:
Type | Description |
---|---|
Union[str, List[str]]
|
name(s) of the field |
Source code in ormar\fields\foreign_key.py
414 415 416 417 418 419 420 421 422 423 424 425 |
|
get_related_name()
Returns name to use for reverse relation.
It's either set as related_name
or by default it's owner model. get_name + 's'
Returns:
Type | Description |
---|---|
str
|
name of the related_name or default related name. |
Source code in ormar\fields\foreign_key.py
342 343 344 345 346 347 348 349 |
|
get_relation_name()
Returns name of the relation, which can be a own name or through model names for m2m models
Returns:
Type | Description |
---|---|
bool
|
result of the check |
Source code in ormar\fields\foreign_key.py
640 641 642 643 644 645 646 647 648 |
|
get_source_model()
Returns model from which the relation comes -> either owner or through model
Returns:
Type | Description |
---|---|
Type["Model"]
|
source model |
Source code in ormar\fields\foreign_key.py
650 651 652 653 654 655 656 657 |
|
get_source_related_name()
Returns name to use for source relation name.
For FK it's the same, differs for m2m fields.
It's either set as related_name
or by default it's owner model. get_name + 's'
Returns:
Type | Description |
---|---|
str
|
name of the related_name or default related name. |
Source code in ormar\fields\foreign_key.py
332 333 334 335 336 337 338 339 340 |
|
has_unresolved_forward_refs()
Verifies if the filed has any ForwardRefs that require updating before the model can be used.
Returns:
Type | Description |
---|---|
bool
|
result of the check |
Source code in ormar\fields\foreign_key.py
594 595 596 597 598 599 600 601 602 |
|
register_relation(model, child)
Registers relation between parent and child in relation manager. Relation manager is kep on each model (different instance).
Used in Metaclass and sometimes some relations are missing (i.e. cloned Models in fastapi might miss one).
Parameters:
Name | Type | Description | Default |
---|---|---|---|
model |
Model
|
parent model (with relation definition) |
required |
child |
Model
|
child model |
required |
Source code in ormar\fields\foreign_key.py
579 580 581 582 583 584 585 586 587 588 589 590 591 592 |
|
Integer
Bases: ModelFieldFactory
, int
Integer field factory that construct Field classes and populated their values.
Source code in ormar\fields\model_fields.py
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 |
|
get_column_type(**kwargs)
classmethod
Return proper type of db column for given field type. Accepts required and optional parameters that each column type accepts.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
kwargs |
Any
|
key, value pairs of sqlalchemy options |
{}
|
Returns:
Type | Description |
---|---|
sqlalchemy Column
|
initialized column with proper options |
Source code in ormar\fields\model_fields.py
236 237 238 239 240 241 242 243 244 245 246 247 |
|
JSON
Bases: ModelFieldFactory
, Json
JSON field factory that construct Field classes and populated their values.
Source code in ormar\fields\model_fields.py
446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 |
|
get_column_type(**kwargs)
classmethod
Return proper type of db column for given field type. Accepts required and optional parameters that each column type accepts.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
kwargs |
Any
|
key, value pairs of sqlalchemy options |
{}
|
Returns:
Type | Description |
---|---|
sqlalchemy Column
|
initialized column with proper options |
Source code in ormar\fields\model_fields.py
454 455 456 457 458 459 460 461 462 463 464 465 |
|
LargeBinary
Bases: ModelFieldFactory
, bytes
LargeBinary field factory that construct Field classes and populated their values.
Source code in ormar\fields\model_fields.py
492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 |
|
get_column_type(**kwargs)
classmethod
Return proper type of db column for given field type. Accepts required and optional parameters that each column type accepts.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
kwargs |
Any
|
key, value pairs of sqlalchemy options |
{}
|
Returns:
Type | Description |
---|---|
sqlalchemy Column
|
initialized column with proper options |
Source code in ormar\fields\model_fields.py
518 519 520 521 522 523 524 525 526 527 528 529 |
|
validate(**kwargs)
classmethod
Used to validate if all required parameters on a given field type are set.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
kwargs |
Any
|
all params passed during construction |
{}
|
Source code in ormar\fields\model_fields.py
531 532 533 534 535 536 537 538 539 540 541 542 |
|
ManyToManyField
Bases: ForeignKeyField
, QuerySetProtocol
, RelationProtocol
Actual class returned from ManyToMany function call and stored in model_fields.
Source code in ormar\fields\many_to_many.py
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 |
|
create_default_through_model()
Creates default empty through model if no additional fields are required.
Source code in ormar\fields\many_to_many.py
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 |
|
evaluate_forward_ref(globalns, localns)
Evaluates the ForwardRef to actual Field based on global and local namespaces
Parameters:
Name | Type | Description | Default |
---|---|---|---|
globalns |
Any
|
global namespace |
required |
localns |
Any
|
local namespace |
required |
Returns:
Type | Description |
---|---|
None
|
None |
Source code in ormar\fields\many_to_many.py
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 |
|
get_model_relation_fields(use_alias=False)
Extract names of the database columns or model fields that are connected with given relation based on use_alias switch.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
use_alias |
bool
|
use db names aliases or model fields |
False
|
Returns:
Type | Description |
---|---|
Union[str, List[str]]
|
name or names of the related columns/ fields |
Source code in ormar\fields\many_to_many.py
274 275 276 277 278 279 280 281 282 283 284 285 286 |
|
get_related_field_alias()
Extract names of the related database columns or that are connected with given relation based to use as a target in filter clause.
Returns:
Type | Description |
---|---|
Union[str, Dict[str, str]]
|
name or names of the related columns/ fields |
Source code in ormar\fields\many_to_many.py
288 289 290 291 292 293 294 295 296 297 298 299 300 301 |
|
get_related_field_name()
Returns name of the relation field that should be used in prefetch query. This field is later used to register relation in prefetch query, populate relations dict, and populate nested model in prefetch query.
Returns:
Type | Description |
---|---|
Union[str, List[str]]
|
name(s) of the field |
Source code in ormar\fields\many_to_many.py
303 304 305 306 307 308 309 310 311 312 313 314 |
|
get_relation_name()
Returns name of the relation, which can be a own name or through model names for m2m models
Returns:
Type | Description |
---|---|
bool
|
result of the check |
Source code in ormar\fields\many_to_many.py
250 251 252 253 254 255 256 257 258 259 260 |
|
get_source_model()
Returns model from which the relation comes -> either owner or through model
Returns:
Type | Description |
---|---|
Type["Model"]
|
source model |
Source code in ormar\fields\many_to_many.py
262 263 264 265 266 267 268 269 |
|
get_source_related_name()
Returns name to use for source relation name.
For FK it's the same, differs for m2m fields.
It's either set as related_name
or by default it's field name.
Returns:
Type | Description |
---|---|
str
|
name of the related_name or default related name. |
Source code in ormar\fields\many_to_many.py
198 199 200 201 202 203 204 205 206 207 208 209 210 211 |
|
has_unresolved_forward_refs()
Verifies if the filed has any ForwardRefs that require updating before the model can be used.
Returns:
Type | Description |
---|---|
bool
|
result of the check |
Source code in ormar\fields\many_to_many.py
213 214 215 216 217 218 219 220 221 |
|
ReferentialAction
Bases: Enum
Because the database management system(DBMS) enforces referential constraints, it must ensure data integrity if rows in a referenced table are to be deleted (or updated).
If dependent rows in referencing tables still exist, those references have to be considered.
SQL specifies 5 different referential actions that shall take place in such occurrences.
Source code in ormar\fields\referential_actions.py
8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
|
SmallInteger
Bases: Integer
, int
SmallInteger field factory that construct Field classes and populated their values.
Source code in ormar\fields\model_fields.py
593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 |
|
get_column_type(**kwargs)
classmethod
Return proper type of db column for given field type. Accepts required and optional parameters that each column type accepts.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
kwargs |
Any
|
key, value pairs of sqlalchemy options |
{}
|
Returns:
Type | Description |
---|---|
sqlalchemy Column
|
initialized column with proper options |
Source code in ormar\fields\model_fields.py
627 628 629 630 631 632 633 634 635 636 637 638 |
|
String
Bases: ModelFieldFactory
, str
String field factory that construct Field classes and populated their values.
Source code in ormar\fields\model_fields.py
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 |
|
get_column_type(**kwargs)
classmethod
Return proper type of db column for given field type. Accepts required and optional parameters that each column type accepts.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
kwargs |
Any
|
key, value pairs of sqlalchemy options |
{}
|
Returns:
Type | Description |
---|---|
sqlalchemy Column
|
initialized column with proper options |
Source code in ormar\fields\model_fields.py
175 176 177 178 179 180 181 182 183 184 185 186 |
|
validate(**kwargs)
classmethod
Used to validate if all required parameters on a given field type are set.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
kwargs |
Any
|
all params passed during construction |
{}
|
Source code in ormar\fields\model_fields.py
188 189 190 191 192 193 194 195 196 197 198 199 |
|
Text
Bases: ModelFieldFactory
, str
Text field factory that construct Field classes and populated their values.
Source code in ormar\fields\model_fields.py
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 |
|
get_column_type(**kwargs)
classmethod
Return proper type of db column for given field type. Accepts required and optional parameters that each column type accepts.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
kwargs |
Any
|
key, value pairs of sqlalchemy options |
{}
|
Returns:
Type | Description |
---|---|
sqlalchemy Column
|
initialized column with proper options |
Source code in ormar\fields\model_fields.py
269 270 271 272 273 274 275 276 277 278 279 280 |
|
ThroughField
Bases: ForeignKeyField
Field class used to access ManyToMany model through model.
Source code in ormar\fields\through_field.py
68 69 70 71 |
|
Time
Bases: ModelFieldFactory
, time
Time field factory that construct Field classes and populated their values.
Source code in ormar\fields\model_fields.py
411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 |
|
get_column_type(**kwargs)
classmethod
Return proper type of db column for given field type. Accepts required and optional parameters that each column type accepts.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
kwargs |
Any
|
key, value pairs of sqlalchemy options |
{}
|
Returns:
Type | Description |
---|---|
sqlalchemy Column
|
initialized column with proper options |
Source code in ormar\fields\model_fields.py
432 433 434 435 436 437 438 439 440 441 442 443 |
|
UUID
Bases: ModelFieldFactory
, UUID
UUID field factory that construct Field classes and populated their values.
Source code in ormar\fields\model_fields.py
714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 |
|
get_column_type(**kwargs)
classmethod
Return proper type of db column for given field type. Accepts required and optional parameters that each column type accepts.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
kwargs |
Any
|
key, value pairs of sqlalchemy options |
{}
|
Returns:
Type | Description |
---|---|
sqlalchemy Column
|
initialized column with proper options |
Source code in ormar\fields\model_fields.py
736 737 738 739 740 741 742 743 744 745 746 747 748 |
|
UniqueColumns
Bases: UniqueConstraint
Subclass of sqlalchemy.UniqueConstraint. Used to avoid importing anything from sqlalchemy by user.
Source code in ormar\fields\constraints.py
6 7 8 9 10 |
|
ForeignKey(to, *, name=None, unique=False, nullable=True, related_name=None, virtual=False, onupdate=None, ondelete=None, **kwargs)
Despite a name it's a function that returns constructed ForeignKeyField. This function is actually used in model declaration (as ormar.ForeignKey(ToModel)).
Accepts number of relation setting parameters as well as all BaseField ones.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
to |
Union[Type[T], ForwardRef]
|
target related ormar Model |
required |
name |
Optional[str]
|
name of the database field - later called alias |
None
|
unique |
bool
|
parameter passed to sqlalchemy.ForeignKey, unique flag |
False
|
nullable |
bool
|
marks field as optional/ required |
True
|
related_name |
Optional[str]
|
name of reversed FK relation populated for you on to model |
None
|
virtual |
bool
|
marks if relation is virtual. It is for reversed FK and auto generated FK on through model in Many2Many relations. |
False
|
onupdate |
Union[ReferentialAction, str, None]
|
parameter passed to sqlalchemy.ForeignKey. How to treat child rows on update of parent (the one where FK is defined) model. |
None
|
ondelete |
Union[ReferentialAction, str, None]
|
parameter passed to sqlalchemy.ForeignKey. How to treat child rows on delete of parent (the one where FK is defined) model. |
None
|
kwargs |
Any
|
all other args to be populated by BaseField |
{}
|
Returns:
Type | Description |
---|---|
ForeignKeyField
|
ormar ForeignKeyField with relation to selected model |
Source code in ormar\fields\foreign_key.py
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 |
|
ManyToMany(to, through=None, *, name=None, unique=False, virtual=False, **kwargs)
Despite a name it's a function that returns constructed ManyToManyField. This function is actually used in model declaration (as ormar.ManyToMany(ToModel, through=ThroughModel)).
Accepts number of relation setting parameters as well as all BaseField ones.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
to |
Union[Type[T], ForwardRef]
|
target related ormar Model |
required |
through |
Optional[Union[Type[T], ForwardRef]]
|
through model for m2m relation |
None
|
name |
Optional[str]
|
name of the database field - later called alias |
None
|
unique |
bool
|
parameter passed to sqlalchemy.ForeignKey, unique flag |
False
|
virtual |
bool
|
marks if relation is virtual. It is for reversed FK and auto generated FK on through model in Many2Many relations. |
False
|
kwargs |
Any
|
all other args to be populated by BaseField |
{}
|
Returns:
Type | Description |
---|---|
ManyToManyField
|
ormar ManyToManyField with m2m relation to selected model |
Source code in ormar\fields\many_to_many.py
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 |
|
Through(to, *, name=None, related_name=None, **kwargs)
Despite a name it's a function that returns constructed ThroughField. It's a special field populated only for m2m relations. Accepts number of relation setting parameters as well as all BaseField ones.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
to |
ToType
|
target related ormar Model |
required |
name |
Optional[str]
|
name of the database field - later called alias |
None
|
related_name |
Optional[str]
|
name of reversed FK relation populated for you on to model |
None
|
kwargs |
Any
|
all other args to be populated by BaseField |
{}
|
Returns:
Type | Description |
---|---|
ForeignKeyField
|
ormar ForeignKeyField with relation to selected model |
Source code in ormar\fields\through_field.py
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 |
|