This commit is contained in:
2019-07-29 22:10:40 +02:00
parent 79ddb8bc11
commit 7fe8cf322d
40 changed files with 30 additions and 22 deletions

View File

@ -0,0 +1,3 @@
parser.add_argument("echo", help="echo the string you use here")
parser.add_argument('--verbosity', help='increase output verbosity', action='store_true')

View File

@ -0,0 +1,3 @@
parser.add_arguments([StrOption('echo', 'echo the string you use here', properties=('mandatory', 'positional')),
BoolOption('verbosity', 'increase output verbosity', default=False)])