pylabrobot.scales.scale.Scale.deserialize#
- classmethod Scale.deserialize(data: dict, allow_marshal: bool = False) Self #
Deserialize a resource from a dictionary.
- Parameters:
- Return type:
Examples
Loading a resource from a json file:
>>> from pylabrobot.resources import Resource >>> with open("my_resource.json", "r") as f: >>> content = json.load(f) >>> resource = Resource.deserialize(content)