...
Code Block | ||||
---|---|---|---|---|
| ||||
import ecflow ci = ecflow.Client("my_host",3141) # replace the host and port with your own. suites_of_interest = [ 's1', 's2' ] # These are the *only* suites that I anam interested in ci.ch_register(False,suites_of_interest) # register interest in the suites ci._sync_local() # sync_local() will now ONLY return the suites s1,s2 print ci.get_defs() ci.ch_drop() # remember to remove our registration, otherwise it stays in the server |
...