I would like to have arguments that do not accept any value. Thus,
should work, but
./my-script.py --flag SomeValue
should not. In argparse this can be achieved by
parser.add_argument("--flag", action="store_true")
but I do not know how to achieve that in python-fire.