ecFlow's documentation is now on readthedocs!

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 3 Next »

from ecflow import defs,Suite,Variable,Edit

defs = Defs()
s1 = defs.add_suite("s1") 
s1.add_variable("HELLO","world") # name, value
s1.add_variable({ "NAME":"value", "NAME2":"value2", "NAME3":"value3", "NAME4":4 }  )
s1.add_variable(Variable("FRED","bloggs"))
s1.add_variable(Variable("BILL","1"))
  • No labels