250951
@bazbt3 help for subcommands: not using argparse, I take it? https://docs.python.org/3/library/argparse.html
250958
@bazbt3 there’s a link to a tutorial intro hiding in a right aside https://docs.python.org/3/howto/argparse.html
250959
@jws Naah, still using BASIC structures and `command, operand = command.split(" ", 1)`. :)

Thanks, I'll bookmark and return to this later.
250995
@bazbt3 Makes it easy to say “yeah here’s all the args and docs” and then it writes your help for you. There are other libs where you write the help output, it parses that big string, and builds the parser for you that way. Kinda the other direction.
251045