TL; DR
Skorzystaj z nargs
opcji lub jej 'append'
ustawienia action
(w zależności od tego, jak ma się zachowywać interfejs użytkownika).
nargs
parser.add_argument('-l','--list', nargs='+', help='<Required> Set flag', required=True)
# Use like:
# python arg.py -l 1234 2345 3456 4567
nargs='+'
przyjmuje 1 lub więcej argumentów, nargs='*'
przyjmuje zero lub więcej.
dodać
parser.add_argument('-l','--list', action='append', help='<Required> Set flag', required=True)
# Use like:
# python arg.py -l 1234 -l 2345 -l 3456 -l 4567
Dzięki append
wielokrotnej opcji możesz zbudować listę.
Nie używaj type=list
!!! - Prawdopodobnie nie ma sytuacji, w której chciałbyś używać type=list
z argparse
. Zawsze.
Przyjrzyjmy się bardziej szczegółowo niektórym różnym sposobom, w jakie można to zrobić, i efektowi końcowemu.
import argparse
parser = argparse.ArgumentParser()
# By default it will fail with multiple arguments.
parser.add_argument('--default')
# Telling the type to be a list will also fail for multiple arguments,
# but give incorrect results for a single argument.
parser.add_argument('--list-type', type=list)
# This will allow you to provide multiple arguments, but you will get
# a list of lists which is not desired.
parser.add_argument('--list-type-nargs', type=list, nargs='+')
# This is the correct way to handle accepting multiple arguments.
# '+' == 1 or more.
# '*' == 0 or more.
# '?' == 0 or 1.
# An int is an explicit number of arguments to accept.
parser.add_argument('--nargs', nargs='+')
# To make the input integers
parser.add_argument('--nargs-int-type', nargs='+', type=int)
# An alternate way to accept multiple inputs, but you must
# provide the flag once per input. Of course, you can use
# type=int here if you want.
parser.add_argument('--append-action', action='append')
# To show the results of the given option to screen.
for _, value in parser.parse_args()._get_kwargs():
if value is not None:
print(value)
Oto wynik, którego możesz się spodziewać:
$ python arg.py --default 1234 2345 3456 4567
...
arg.py: error: unrecognized arguments: 2345 3456 4567
$ python arg.py --list-type 1234 2345 3456 4567
...
arg.py: error: unrecognized arguments: 2345 3456 4567
$ # Quotes won't help here...
$ python arg.py --list-type "1234 2345 3456 4567"
['1', '2', '3', '4', ' ', '2', '3', '4', '5', ' ', '3', '4', '5', '6', ' ', '4', '5', '6', '7']
$ python arg.py --list-type-nargs 1234 2345 3456 4567
[['1', '2', '3', '4'], ['2', '3', '4', '5'], ['3', '4', '5', '6'], ['4', '5', '6', '7']]
$ python arg.py --nargs 1234 2345 3456 4567
['1234', '2345', '3456', '4567']
$ python arg.py --nargs-int-type 1234 2345 3456 4567
[1234, 2345, 3456, 4567]
$ # Negative numbers are handled perfectly fine out of the box.
$ python arg.py --nargs-int-type -1234 2345 -3456 4567
[-1234, 2345, -3456, 4567]
$ python arg.py --append-action 1234 --append-action 2345 --append-action 3456 --append-action 4567
['1234', '2345', '3456', '4567']
Na wynos :
- Użyj
nargs
lubaction='append'
nargs
może być prostsze z punktu widzenia użytkownika, ale może być nieintuicyjne, jeśli istnieją argumenty pozycyjne, ponieważ argparse
nie można powiedzieć, co powinno być argumentem pozycyjnym, a co należy do nargs
; jeśli masz argumenty pozycyjne, action='append'
może być lepszym wyborem.
- Powyższe jest prawdziwe tylko wtedy, gdy
nargs
jest podany '*'
, '+'
lub '?'
. Jeśli podasz liczbę całkowitą (np. 4
), Nie będzie problemu z mieszaniem opcji z nargs
argumentami pozycyjnymi, ponieważ argparse
będziesz wiedział dokładnie, ile wartości można oczekiwać dla opcji.
- Nie używaj cudzysłowów w wierszu poleceń 1
- Nie używaj
type=list
, ponieważ spowoduje to zwrócenie listy list
- Dzieje się tak, ponieważ pod maską
argparse
używa się wartości, type
aby wymusić każdy wybrany argumenttype
, a nie sumę wszystkich argumentów.
- Możesz użyć
type=int
(lub cokolwiek), aby uzyskać listę ints (lub cokolwiek)
1 : Ogólnie nie mam na myśli .. Mam na myśli, że przekazywanie listyargparse
cudzysłowami nie jest tym, czego chcesz.