これらの myprog の呼び出しを機能させたいと思います。
$ python3 myprog.py -i infile -o outfile
$ python3 myprog.py -o outfile
$ python3 myprog.py -o
$ python3 myprog.py
特に、アウトファイルではなくインファイルを指定することを違法にしたいと考えています。
3 番目のケースでは、outfile のデフォルト名は「out.json」と見なされます。2 番目、3 番目、4 番目のケースでは、入力ファイルのデフォルト名は「file.n.json」と想定されます。n は整数のバージョン番号です。4 番目のケースでは、出力ファイルは「file.n+1.json」になります。ここで、n+1 は入力ファイルのバージョン番号よりも 1 大きいバージョン番号です。私のコードの関連セクションは次のとおりです。
import argparse
parser = argparse.ArgumentParser(description="first python version")
parser.add_argument('-i', '--infile', nargs=1, type=argparse.FileType('r'), help='input file, in JSON format')
parser.add_argument('-o', '--outfile', nargs='?', type=argparse.FileType('w'), default='out.json', help='output file, in JSON format')
args = parser.parse_args()
print("Here's what we saw on the command line: ")
print("args.infile",args.infile)
print("args.outfile",args.outfile)
if args.infile and not args.outfile:
parser.error("dont specify an infile without specifying an outfile")
elif not args.infile:
print("fetching infile")
else: # neither was specified on the command line
print("fetching both infile and outfile")
問題は、実行するときです
$ python3 myprog.py -i infile.json
私が望んでいたパーサーエラーの代わりに、私は得る:
Here's what we saw on the command line:
args.infile [<_io.TextIOWrapper name='infile.json' mode='r' encoding='UTF-8'>]
args.outfile <_io.TextIOWrapper name='out.json' mode='w' encoding='UTF-8'>
fetching both infile and outfile
...これは、コマンドラインに「-o」がなくても、あたかも存在するかのように動作したことを示唆しています。