matflow.EnvironmentsList#
- class matflow.EnvironmentsList(_objects)#
Bases:
EnvironmentsList
A list-like container for environments with dot-notation access by name.
- Parameters:
_objects (list[Environment]) – The environments in this list.
Methods
Add an object to this list.
Add multiple objects to the list.
Make an instance of this class from JSON (or YAML) data.
Get an object from this list that matches the given criteria.
Get all objects in this list that match the given criteria.
Get a tuple of the unique access-attribute values of the constituent objects.
Serialize this object as a dictionary.
Serialize this object as an object structure that can be trivially converted to JSON.
- add_object(obj, index=-1, skip_duplicates=False)#
Add an object to this list.
- add_objects(objs, index=-1, skip_duplicates=False)#
Add multiple objects to the list.
- classmethod from_json_like(json_like, shared_data=None, is_hashed=False)#
Make an instance of this class from JSON (or YAML) data.
- Parameters:
json_like – The data to deserialise.
shared_data – Shared context data.
is_hashed (bool) – If True, accept a dict whose keys are hashes of the dict values.
- Return type:
The deserialised object.
- get(access_attribute_value=None, **kwargs)#
Get an object from this list that matches the given criteria.
- get_all(access_attribute_value=None, **kwargs)#
Get all objects in this list that match the given criteria.
- list_attrs()#
Get a tuple of the unique access-attribute values of the constituent objects.
- to_dict()#
Serialize this object as a dictionary.
- to_json_like(dct=None, shared_data=None, exclude=None, path=None)#
Serialize this object as an object structure that can be trivially converted to JSON. Note that YAML can also be produced from the result of this method; it just requires a different final serialization step.