PyTemporalPropsList
#
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 temporal property by key.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
key
|
str
|
property key. |
required |
Returns:
| Type | Description |
|---|---|
Optional[PyTemporalPropList]
|
|
histories()
#
Full update history of each property across the underlying entities.
Returns:
| Type | Description |
|---|---|
dict[str, PyPropHistItemsList]
|
|
items()
#
Pairs of (key, temporal property list) for every property key.
Returns:
| Type | Description |
|---|---|
list[tuple[str, PyTemporalPropList]]
|
|
latest()
#
Latest value of each property across the underlying entities.
Returns:
| Type | Description |
|---|---|
dict[str, PyPropValueList]
|
|