Progression API Models
DestinyFactionProgression
Bases: BaseModel
Mostly for historical purposes, we segregate Faction progressions from other progressions. This is just a DestinyProgression with a shortcut for finding the DestinyFactionDefinition of the faction related to the progression.
Manifest Information
This model has some attributes which can be filled with additional information found in the manifest (manifest_...).
Without additional work, these attributes will be None, since they require additional requests and database lookups.
To fill the manifest dependent attributes, either:
Attributes:
| Name | Type | Description |
|---|---|---|
current_progress |
int
|
This is the total amount of progress obtained overall for this progression (for instance, the total amount of Character Level experience earned) |
current_reset_count |
int
|
The number of resets of this progression you've executed this season, if applicable to this progression. |
daily_limit |
int
|
If this progression has a daily limit, this is that limit. |
daily_progress |
int
|
The amount of progress earned today for this progression. |
faction_hash |
int
|
The hash identifier of the Faction related to this progression. Use it to look up the DestinyFactionDefinition for more rendering info. |
faction_vendor_index |
int
|
The index of the Faction vendor that is currently available. Will be set to -1 if no vendors are available. |
level |
int
|
This is the level of the progression (for instance, the Character Level). |
level_cap |
int
|
This is the maximum possible level you can achieve for this progression (for example, the maximum character level obtainable) |
next_level_at |
int
|
The total amount of progression (i.e. "Experience") needed in order to reach the next level. |
progress_to_next_level |
int
|
The amount of progression (i.e. "Experience") needed to reach the next level of this Progression. Jeez, progression is such an overloaded word. |
progression_hash |
int
|
The hash identifier of the Progression in question. Use it to look up the DestinyProgressionDefinition in static data. |
reward_item_socket_override_states |
dict[int, DestinyProgressionRewardItemSocketOverrideState]
|
Information about items stats and states that have socket overrides, if there is any data for it. |
reward_item_states |
list[Union[DestinyProgressionRewardItemState, int]]
|
Information about historical rewards for this progression, if there is any data for it. |
season_resets |
list[DestinyProgressionResetEntry]
|
Information about historical resets of this progression, if there is any data for it. |
step_index |
int
|
Progressions define their levels in "steps". Since the last step may be repeatable, the user may be at a higher level than the actual Step achieved in the progression. Not necessarily useful, but potentially interesting for those cruising the API. Relate this to the "steps" property of the DestinyProgression to see which step the user is on, if you care about that. (Note that this is Content Version dependent since it refers to indexes.) |
weekly_limit |
int
|
If this progression has a weekly limit, this is that limit. |
weekly_progress |
int
|
The amount of progress earned toward this progression in the current week. |
manifest_faction_hash |
Optional[DestinyFactionDefinition]
|
Manifest information for |
manifest_progression_hash |
Optional[DestinyProgressionDefinition]
|
Manifest information for |
Source code in src/bungio/models/bungie/destiny/progression.py
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 | |
_convert_to_bungie_case(string)
cached
staticmethod
Convert a string to how it is represented by bungie: my_name_string -> myNameString
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
string
|
str
|
The og string |
required |
Returns:
| Type | Description |
|---|---|
str
|
The bungie string |
Source code in src/bungio/models/base.py
462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 | |
fetch_manifest_information(include=None, exclude=None, _cache=None)
async
Fill the model in-place with information from the manifest.
Example
Fill every attribute
1 2 3 4 | |
Fill only some attribute
1 2 3 4 | |
1 2 3 4 | |
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
include
|
Optional[list[str]]
|
A list of attributes you want to include. Excludes everything not mentioned |
None
|
exclude
|
Optional[list[str]]
|
A list of attributes you want to exclude. Includes everything not mentioned |
None
|
Source code in src/bungio/models/base.py
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 | |
from_dict(data, client, recursive=False, *args, **kwargs)
async
classmethod
Convert json data to this model
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
data
|
dict
|
The json representation of the model, usually received by bungie |
required |
client
|
'Client'
|
The client obj |
required |
recursive
|
bool
|
If this was called recursively |
False
|
Returns:
| Type | Description |
|---|---|
BaseModel
|
The model |
Source code in src/bungio/models/base.py
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 | |
process_dict(data, client, *args, **kwargs)
staticmethod
Model specific cleanup
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
data
|
dict
|
The json representation of the model, usually received by bungie |
required |
client
|
'Client'
|
The client obj |
required |
Returns:
| Type | Description |
|---|---|
dict
|
Clean json |
Source code in src/bungio/models/base.py
260 261 262 263 264 265 266 267 268 269 270 271 272 | |
to_dict(_return_to_bungie_case=True)
Convert the model into a dict representation bungie accepts
Returns:
| Type | Description |
|---|---|
dict
|
A dict which can be sent to bungie |
Source code in src/bungio/models/base.py
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 | |