My issue with argparse isn't that it's not global, it's that you have to create sub-parsers for multiple commands, and then add arguments to those subparsers. Those parsers are all typically defined in a central location, but copying arguments between those parsers as I define new commands can get them jumbled up because the sub-parser comes along with the argument:
If I copy "sub1.add_argument" and put it under "sub2", and forget to change "sub1" to "sub2", it is a hard to track down bug. I've had this happen a lot as the parser gets more complex.
Typer completely eliminates this potential bug, because the arguments are defined as type annotations in the sub-command function itself.
Typer completely eliminates this potential bug, because the arguments are defined as type annotations in the sub-command function itself.