wilsojb
01/29/2020, 9:24 PMFlow
and a ___main___
that calls flow.run()
.
• These scripts need to get orchestrated. I figured I'd make a master flow that knows how to execute the smaller flows and get that master flow scheduled.script1.py
, script2.py
, and script3.py
. Each contain a single instance of a Flow
. Each can be run independently of the others for various reasons.master.py
that can import script1, script2, script3
and make a Flow(script1.flow, script2.flow, script3.flow
Jeremiah
01/29/2020, 11:41 PMwilsojb
01/30/2020, 3:59 PM