
Security News
Another Round of TEA Protocol Spam Floods npm, But It’s Not a Worm
Recent coverage mislabels the latest TEA protocol spam as a worm. Here’s what’s actually happening.
temporalobject
Advanced tools
TemporalObject is a custom Python class for storing and managing object states in a temporal sequence. It uses a deque with a fixed maximum length to maintain a rolling buffer of states, providing an efficient way to track the history of changes. Each state can be indexed by an integer, a string ID, or a slice, and the class keeps track of the current state index within the buffer.
To use TemporalObject, ensure you have the required dependencies installed. You can install LimitedDict from the temporal.util module.
import uuid
from collections import deque
from typing import Any
from temporal.util import LimitedDict
class TemporalObject:
"""
An custom object for storing and managing its states in a temporal sequence.
This class utilizes a deque with a fixed maximum length (maxlen) to maintain
a rolling buffer of states.
Each state can be indexed by an integer, a string ID, or a slice. The class
also tracks the current state index within the buffer.
Parameters
----------
temporal_depth : int
The maximum number of states to store.
Attributes
----------
buffer : deque
A deque with a maxlen.
id_index : LimitedDict
A dictionary with a limit on the number of items it can store.
Methods
-------
add(id: str, state: dict) -> None:
Appends a state to the buffer.
update(object) -> None:
Adds the object's state to the buffer.
get(key: str, relative_index: int = 0) -> dict:
Returns the value of the object with the given key and relative index.
current() -> dict:
Returns the current state.
"""
Create an instance of TemporalObject by specifying the maximum number of states to store.
temporal_object = TemporalObject(temporal_depth=100)
Use the add method to append a state to the buffer.
temporal_object.add(id="state1", state={"key": "value"})
Use the update method to add the object's state to the buffer. If no temporal ID is provided, a new UUID will be generated.
state = {"key": "new_value"}
temporal_id = temporal_object.update(object_state=state)
Retrieve a state using the get method by specifying the key and an optional relative index.
state = temporal_object.get(key="state1", relative_index=0)
Get the current state using the current property.
current_state = temporal_object.current
Check the number of states in the buffer.
buffer_length = len(temporal_object)
Iterate over the states in the buffer.
for state in temporal_object:
print(state)
Access states by their index, temporal ID, or slice.
state_by_index = temporal_object[0]
state_by_id = temporal_object["state1"]
This project is licensed under the MIT License.
FAQs
A custom python object for storing and managing states in a temporal sequence.
We found that temporalobject demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Recent coverage mislabels the latest TEA protocol spam as a worm. Here’s what’s actually happening.

Security News
PyPI adds Trusted Publishing support for GitLab Self-Managed as adoption reaches 25% of uploads

Research
/Security News
A malicious Chrome extension posing as an Ethereum wallet steals seed phrases by encoding them into Sui transactions, enabling full wallet takeover.