hpcflow.sdk.core.environment.Environment#
- class hpcflow.sdk.core.environment.Environment(name, setup=None, specifiers=None, executables=None, doc='', setup_label=None, _hash_value=None)#
Bases:
JSONLikeAn execution environment that contains a number of executables.
- Parameters:
name (str) – The name of the environment.
setup (list[str]) – Commands to run to enter the environment.
specifiers (dict[str, str]) – Dictionary of attributes that may be used to supply additional key/value pairs to look up an environment by.
executables (list[Executable]) – List of abstract executables in the environment.
setup_label (str) – String label of the environment setup helper that generated this environment, if it was generated in that way.
doc (str)
_hash_value (str | None)
Methods
Make an instance of this class from JSON (or YAML) data.
Serialize this object as a dictionary.
Serialize this object as an object structure that can be trivially converted to JSON.
Attributes
An ID that can be used to compare if two environments are equivalent, in the sense that they must not be defined together.
The name of the environment.
Documentation for the environment.
Dictionary of attributes that may be used to supply additional key/value pairs to look up an environment by.
List of abstract executables in the environment.
Commands to run to enter the environment.
- doc#
Documentation for the environment.
- executables#
List of abstract executables in the environment.
- classmethod from_json_like(json_like, shared_data=None)#
Make an instance of this class from JSON (or YAML) data.
- Parameters:
json_like (str | Mapping[str, JSONed] | Sequence[Mapping[str, JSONed]] | None) – The data to deserialise.
shared_data (Mapping[str, ObjectList[JSONable]] | None) – Shared context data.
- Return type:
The deserialised object.
- property id: int#
An ID that can be used to compare if two environments are equivalent, in the sense that they must not be defined together.
- name#
The name of the environment.
- specifiers: Mapping[str, str]#
Dictionary of attributes that may be used to supply additional key/value pairs to look up an environment by.
- to_json_like(dct=None, shared_data=None, exclude=(), 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.