Data Store

class Store[source]

Bases: object

Hold the current state info required by the engine. Must be serialised. Should only be accessed via getters and setters, not directly.

__init__()[source]

Initialize self. See help(type(self)) for accurate signature.

deserialise(serialised: Dict[str, Any])[source]

Loads the details from the serialised data back into the store.

serialise()Dict[str, Any][source]

Serialise all data held in the store.