Hi,
I’m trying to launch a workflow with knimepy: this is my script:
import knime
knime.executable_path = r"/home/giuseppe/knime_4.7.2/knime"
print("Invoke KNIME to run selected workflow: ")
with knime.Workflow("/home/giuseppe/knime-workspace/DT_PI") as wf:
wf.execute()
and I launch it with the command: python scriptname.py.
My last node is a write csv file. If the nodes are not resetted the otuptut CSV file is not written.
So, I need after a launch of the workflow, it is automatically resetted.
I’m using Knime Analytics Platform v.4.7.2 on a Debian WSL.
Some idea?