PyTemporalPropsListList
#
Bases: object
__contains__(key)
#
Return bool(key in self).
__eq__(value)
#
Return self==value.
__ge__(value)
#
Return self>=value.
__getitem__(key)
#
Return self[key].
__gt__(value)
#
Return self>value.
__iter__()
#
Implement iter(self).
__le__(value)
#
Return self<=value.
__lt__(value)
#
Return self<value.
__ne__(value)
#
Return self!=value.
get(key)
#
Look up a nested temporal property by key.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
key
|
str
|
property key. |
required |
Returns:
| Type | Description |
|---|---|
Optional[PyTemporalPropListList]
|
|
histories()
#
Full update history of each property across the nested entities.
Returns:
| Type | Description |
|---|---|
dict[str, PyPropHistItemsListList]
|
|
items()
#
Pairs of (key, nested temporal property list) for every property key.
Returns:
| Type | Description |
|---|---|
list[tuple[str, PyTemporalPropListList]]
|
|
latest()
#
Latest value of each property across the nested entities.
Returns:
| Type | Description |
|---|---|
dict[str, PyPropValueListList]
|
|
values()
#
Per-key list of nested temporal property views.
Returns:
| Type | Description |
|---|---|
list[PyTemporalPropListList]
|
|