I have a command-line option that requires an argument. I would like to be able to supply "--"
as the argument, but I can't figure out how to do it.
Sample code: (test-argparse.py
)
#!/usr/bin/env python
from __future__ import print_function
import argparse
import sys
def main(argv):
ap = argparse.ArgumentParser()
ap.add_argument("-x", "--foo", metavar="VALUE", default="",
help="Test option.")
args = ap.parse_args(argv[1:])
print(args.foo)
if __name__ == "__main__":
sys.exit(main(sys.argv))
All my attempts to try to pass "--"
as an argument fail:
$ test-argparse.py --foo --
usage: test-argparse.py [-h] [-x VALUE]
test-argparse.py: error: argument -x/--foo: expected one argument
$ test-argparse.py --foo -- --
usage: test-argparse.py [-h] [-x VALUE]
test-argparse.py: error: argument -x/--foo: expected one argument
$ test-argparse.py --foo=--
[]
$ test-argparse.py --foo=-- --
usage: test-argparse.py [-h] [-x VALUE]
test-argparse.py: error: unrecognized arguments: --
$ test-argparse.py --foo="--"
[]
$ test-argparse.py '--foo --'
usage: test-argparse.py [-h] [-x VALUE]
test-argparse.py: error: unrecognized arguments: --foo --
$ test-argparse.py -x--
[]
$ test-argparse.py '-x --'
--
The last case is the closest, but it includes the space (and I can't just strip whitespace, because what if I want to allow " "
as a value?). Is there any way that I can accomplish this?
That argparse forces argument permutation on clients (leading to unnecessary ambiguity) is very frustrating.
(I am using Python 2.7.12.)
Ideally
--foo=--
should work, but the current parser deletes all '--', leaving an empty string in its place, hence thefoo=[]
result. I proposed a patch a couple of years ago that should have fixed that, but it's caught in theargparse
backlog. http://bugs.python.org/issue13922, http://bugs.python.org/issue14364, http://bugs.python.org/issue9571Python argparse with -- as the value suggests preprocessing
sys.argv
replacing one or more of the--
with something else.If you are game for patching your
argparse.py
file (or subclass theArgumentParser
class), I could revisit my earlier work and suggest a fix. The trick is to accept that=--
but still use the first free--
as the 'rest-are-positionals' flag (and retain any following--
). Unfortunately one method that needs to be patched is nested in a much larger one.