Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Python

The following section shows how to add a ecflow.Label in python: ( Note: families f1 and f2 are omitted for brevity)

#!/usr/bin/env python2.7
import os
import ecflow 
 
print "Creating suite definition"   
defs = ecflow.Defs()
suite = defs.add_suite("test")
suite.add_variable("ECF_INCLUDE", os.getenv("HOME") + "/course")
suite.add_variable("ECF_HOME",    os.getenv("HOME") + "/course")

suite.add_family("f3").add_task("t1").add_label("info","") 
print defs

print "Checking job creation: .ecf -> .job0"   
print defs.check_job_creation()

print "Saving definition to file 'test.def'"
defs.save_as_defs("test.def") 

What to do

  1. Modify the suite definition file or python script
  2. Create the new ecf script file $HOME/course/test/f3/t1.ecf
  3. Replace the suite definition
  4. Watch in ecflow_ui
       

...