gifted-shampoo-74550
05/20/2025, 8:19 PMpython myflow.py --help
(and all the subcommands recursively under that).
I was actually curious for the sake of using the Runner
API, but the docs just say things like "Additional arguments that you would pass to python myflow.py
after the run
command" ๐; further, in some cases these appear to be positional args for the CLI but must be kwargs for the Runner
methods. E.g., specifically I was looking for runner.resume(step_to_rerun="step_name")
, which, to its credit does match the CLI --help
docs, but feels a bit surprising.ancient-application-36103
05/20/2025, 10:02 PMpython myflow.py <command> --help
is the best bet. i will add a note to create a new doc pagedry-beach-38304
05/21/2025, 9:36 AM--help
is your best bet and you can assume that it works in the Runner API (it will in most cases). Note that it also follows the same hierarchy so:
myflow.py <option1> run <option2>
will be something like Runner("myflow.py", option1).run(option2)
dry-beach-38304
05/21/2025, 9:37 AMgifted-shampoo-74550
05/21/2025, 12:01 PM--help
will certainly get me what I need. Thanks!