I have a function definition with a parameter of type typing.List[str]. I'd like for this to be handled in the CLI as an argument that supports multiple entries either --foo arg1 arg2 arg3 or preferably --foo arg1 --foo arg2 --foo arg3. Is this possible with Clize? If so, what's the best way to accomplish this?
I have a function definition with a parameter of type
typing.List[str]. I'd like for this to be handled in the CLI as an argument that supports multiple entries either--foo arg1 arg2 arg3or preferably--foo arg1 --foo arg2 --foo arg3. Is this possible with Clize? If so, what's the best way to accomplish this?