argparse
Often times I want to write a python script to call another python script. The called script has some arguments. I don't want to use subprocess. The two things I usually do are:
- use hydra
- use the fact that
argparse.parsecan take a list of overrides (see this article)