- Notifications
You must be signed in to change notification settings - Fork 536
Open
Labels
Description
I have been thinking for a while that we don't have a clear template that allows people to leverage their workflows from the CLI. I normally have a script that:
- Has a
__name__=="__main__"block that contains an argument parser fromargparse - Passes input arguments to a function that creates my workflow based on those inputs
- Runs the workflow with the specified parallel plugin
Is this how everyone does it? Or is do you always run from an interactive window? I have built up some boilerplate for parsing in parallel plugins/args in particular and I am wondering how best to share them.