from ecflow import Defs,Suite,Variable,Edit defs = Defs(Suite("s1",HELLO="world",FRED="bloggs",BILL=1,NAME="value",NAME2="value2")) defs.s1.add_variable('NAME4',4) defs.s1 += Edit(NAME3="value3") |
The following examples show alternative styles that produce the same definition:
|
|
|
Note: that although we are using class Edit as a short cut, the objects that are added are still of type Variable.