Tagged Questions

From the module documentation: The argparse module makes it easy to write user-friendly command-line interfaces. The program defines what arguments it requires, and argparse will figure out how to parse those out of sys.argv. The argparse module also automatically generates help and usage ...

learn more… | top users | synonyms

26
votes
3answers
4k views

Why use argparse rather than optparse?

I noticed that the Python 2.7 documentation includes yet another command-line parsing module. In addition to getopt and optparse we now have argparse. Why has yet another command-line parsing module ...
22
votes
1answer
2k views

Argparse optional positional arguments?

I have script which is meant to be used like this: usage: installer.py dir [-h] [-v] dir is a positional argument which is defined like this: parser.add_argument('dir', default=os.getcwd()) I want ...
12
votes
1answer
796 views

Python argparse: How to insert newline the help text?

I'm using argparse in Python 2.7 for parsing input options. One of my options is a multiple choice. I want to make a list in its help text, e.g. from argparse import ArgumentParser parser = ...
8
votes
2answers
174 views

Python argparse and bash completion

I would like to get auto-completion on my python scripts also in the arguments. I had never really understood how the bash_completion worked (for arguments), but after I digged in I understood that: ...
8
votes
5answers
572 views

Verbose level with argparse and multiple -v options

I'd like to be able to specify different verbose level, by adding more -v options to the command line. For example: $ myprogram.py $ myprogram.py -v $ myprogram.py -vv $ myprogram.py -v -v -v ...
7
votes
1answer
122 views

Is it bad form to raise ArgumentError by hand

If you want to add an extra check not provided by argparse, such as: if variable a == b then c should be not None is it permissible to raise ArgumentError yourself? Should you raise Exception ...
7
votes
1answer
331 views

Python argparse: Is there a way to specify a range in nargs?

I have an optional argument that supports a list of arguments itself. I mean, it should support: -f 1 2 -f 1 2 3 but not: -f 1 -f 1 2 3 4 Is there a way to force this within argparse ? Now ...
7
votes
2answers
706 views

Display help message with python argparse when script is called without any arguments

This might be a simple one. Assume I have a program that uses argparse to process command line arguments/options. The following will print the 'help' message: ./myprogram -h or: ./myprogram --help ...
6
votes
1answer
75 views

Python Argparse: Issue with optional arguments which are negative numbers

I'm having a small issue with argparse. I have an option xlim which is the xrange of a plot. I want to be able to pass numbers like -2e-5. However this does not work - argparse interprets this is a ...
6
votes
3answers
199 views

Argparse: ignore multiple positional arguments when optional argument is specified

I'm trying to make argparse ignore the fact that two normally required positional arguments shouldn't be evaluated when an optional argument (-l) is specified. Basically I'm trying to replicate the ...
6
votes
2answers
435 views

Control formatting of the argparse help argument list?

import argparse parser = argparse.ArgumentParser(prog='tool') args = [('-u', '--upf', 'ref. upf', dict(required='True')), ('-s', '--skew', 'ref. skew', {}), ('-m', '--model', 'ref. ...
5
votes
1answer
537 views

Get selected subcommand with argparse

When I use subcommands with python argparse, I can get the selected arguments. parser = argparse.ArgumentParser() parser.add_argument('-g', '--global') subparsers = parser.add_subparsers() ...
5
votes
3answers
3k views

Using the argparse output to call functions

Currently my code looks like this. It allows me to parse multiple parameters my program script gets. Is there a different way that is closer to 'best practices'? I haven't seen code actually using the ...
4
votes
3answers
155 views

Python argparse positional arguments and sub-commands

I'm working with argparse and am trying to mix sub-commands and positional arguments, and the following issue came up. This code runs fine: import argparse parser = argparse.ArgumentParser() ...
4
votes
2answers
115 views

argparse: identify which subparser was used

I think this must be easy but I do not get it. Assume I have the following arparse parser: import argparse parser = argparse.ArgumentParser( version='pyargparsetest 1.0' ) subparsers = ...
4
votes
1answer
121 views

Optional stdin in Python with argparse

I found the very useful syntax parser.add_argument('-i', '--input-file', type=argparse.FileType('r'), default='-') for specifying an input file or using stdin—both of which I want in my program. ...
4
votes
1answer
265 views

Python argparse - Add argument to multiple subparsers

My script defines one main parser and multiple subparsers. I want to apply the -p argument to some subparsers. So far the code looks like this: parser = argparse.ArgumentParser(prog="myProg") ...
4
votes
1answer
209 views

In python, how to get subparsers to read in parent parser's argument?

Here is an example code: import argparse parser=argparse.ArgumentParser() parser.add_argument('-main_arg') subparser=parser.add_subparser() a=subparser.add_parser('run') ...
4
votes
2answers
437 views

Python argparse: Make at least one argument required

I've been using argparse for a Python program that can -prepare, -upload or both: parser = argparse.ArgumentParser(description='Log archiver arguments.') parser.add_argument('-process', ...
4
votes
2answers
1k views

How to code argparse combinational options in python

All, I have been troubled with this small piece of activity to be completed. I did do some experiment, but was not able to achieve the result. Requirement test2.py [-c/-v] -f Rules a. -c ...
4
votes
2answers
529 views

Python argparse optional sub-arguments

I'd like to have an argument to my program that has some required parameters along with some optional parameters. Something like this: [--print text [color [size]] so you could pass it any of ...
4
votes
1answer
571 views

Argparse - How to Specify a Default Subcommand

I am using the argparse package of Python 2.7 to write some option-parsing logic for a command-line tool. The tool should accept one of the following arguments: "ON": Turn a function on. "OFF": Turn ...
4
votes
1answer
482 views

Python argparse: nargs + or * depending on prior argument

I'm writing a server querying tool, and I have a little bit of code to parse arguments at the very top: # Parse arguments p = argparse.ArgumentParser() g = ...
3
votes
4answers
102 views

In Python argparse, is it possible to have paired --no-something/--something arguments?

I'm writing a program in which I would like to have arguments like this: --[no-]foo Do (or do not) foo. Default is do. Is there a way to get argparse to do this for me? I'm using Python 3.2. ...
3
votes
1answer
43 views

Is it possible for argparse's --help to show my exit statuses?

I have a utility that is written in Python and is meant to be used on its own or in conjunction with other shell utilities. As such, my utility exits with status codes (e.g. 0 if everything is fine, 1 ...
3
votes
2answers
66 views

argparse argument order

I have a little problem. I use argparse to parse my arguments, and it's working very well. To have the args, I do : p_args = parser.parse_args(argv) args = dict(p_args._get_kwargs()) But the ...
3
votes
4answers
127 views

python argparse - optional append argument with choices

I have a script where I ask the user for a list of pre-defined actions to perform. I also want the ability to assume a particular list of actions when the user doesn't define anything. however, it ...
3
votes
2answers
201 views

How to make python argparse mutually exclusive group arguments without prefix?

Python2.7 argparse only accepts optional arguments (prefixed) in mutually exclusive groups: parser = argparse.ArgumentParser(prog='mydaemon') action = ...
3
votes
3answers
1k views

argparse Python modules in cli

I am trying to run a python script from the Linux SSH Secure Shell command line environment, and I am trying to import the argparse library, but it gives the error: "ImportError: No module named ...
3
votes
2answers
136 views

One optional argument which does not require positional arguments

I have a question regarding python's argparse: Is it possible to have a optional argument, which does not require positional arguments? Example: parser.add_argument('lat', help="latitude") ...
3
votes
2answers
140 views

argparse - Accept a range of numbers in the form of 0-5? (python)

Using argparse, is there a way to accept a range of numbers and convert them into a list? For example... python example.py --range 0-5 Is there some way input a command line argument in that form ...
3
votes
2answers
160 views

Don't parse options after the last positional argument

I'm writing a wrapper around the ssh command line client. After the first positional argument that's part of command, all further options should also be treated as positional arguments. Under ...
3
votes
1answer
283 views

how to let the parser print help message rather than error and exit

I am using argparse to handle cmd args, I wanna if there is no args specified, then print the help message, but now the parse will output a error, and then exit. my code is: def main(): print "in ...
3
votes
1answer
317 views

python argparse: How can I display help automatically on error?

Currently when I enter invalid options or omit positional arguments, argparse kicks me back to the prompt and displays the usage for my app. This is ok, but I would rather automatically display the ...
2
votes
1answer
25 views

python argh/argparse: How can I pass a list as a command-line argument?

I'm trying to pass a list of arguments to a python script using the argh library. Something that can take inputs like these: ./my_script.py my-func --argA blah --argB 1 2 3 4 ./my_script.py my-func ...
2
votes
2answers
58 views

Python argparse: Lots of choices results in ugly help output

I have this code which I am generally pleased with: import argparse servers = [ "ApaServer", "BananServer", "GulServer", "SolServer", "RymdServer", "SkeppServer", "HavsServer", ...
2
votes
3answers
45 views

Optional Command Line Parameter in Python

I am trying to retrieve optional command line parameters for a Python script (2.7 under Windows) and things are not going smoothly. The code is: parser = argparse.ArgumentParser(description = ...
2
votes
2answers
52 views

Leave arguments untouched with argparse

I would like use argparse to parse the arguments that it knows and then leave the rest untouched. For example I want to be able to run performance -o output other_script.py -a opt1 -b opt2 Which ...
2
votes
2answers
45 views

can argparse store positional number arguments as simple variables?

I would like to use argparse to take some (3) integer arguments, and use these as variables in the program body. Running the code below, each variable gets stored in a one element list. This is no big ...
2
votes
2answers
90 views

Python argparse type and choice restrictions with nargs > 1

The title pretty much says it all. If I have nargs greater than 1, is there any way I can set restrictions (such as choice/type) on the individual args parsed? This is some example code: parser = ...
2
votes
1answer
105 views

Python: argparse subcommand subcommand?

I have a program that has many available options. For example a configuration option to change settings. ./app config -h gives me the help using normal argparse subcommands now i would like to add ...
2
votes
1answer
67 views

argparse combine with optional parameter

If the user use the optional parameter -o then the user has to use parameter -b as well. However, the -b parameter you have to use only if the user set the parameter -o. import argparse if __name__ ...
2
votes
1answer
77 views

How to modify the metavar for a positional argument in pythons argparse?

In the argparse package the metavar parameter modifies the displayed help message of a program. The following program is not intended to work, it is simply used to demonstrate the behavior of the ...
2
votes
1answer
117 views

Taking input containing " or ' with argparse

I've made a quick python script that converts to Unicode from ASCII and back. I'm taking input via argparse so it has to be contained within quotation marks, i.e. ./Converter.py -a "there's my ...
2
votes
1answer
66 views

Is there a way to leave an argument out of the help using python argparse

I have an argument that is an internal debug flag and shouldn't be run by users who don't know what they are doing. I realize that hiding it is in essence security by obscurity, but I'm not concerned ...
2
votes
1answer
148 views

argparse module - How to change help format in runtime?

Lets say, I've got a parser: self.__parser = argparse.ArgumentParser( prog = '<...>', fromfile_prefix_chars='@') After it is ...
2
votes
1answer
132 views

Command-line interface design with base options and subcommands

I'm trying to develop a command line interface for a tool I'm writing. I'm tossing up between an interface similar to Fabric's fab tool and one like svn's command line tool. fab's usage message: ...
2
votes
4answers
386 views

Python argparse and controlling/overriding the exit status code

Apart from tinkering with the argparse source, is there any way to control the exit status code should there be a problem when parse_args() is called, for example, a missing required switch?
2
votes
2answers
173 views

Argparse incorrect order of positional and optional parameters

Why won't argparse parse these arguments? --foo 1 2 3 bar Using parser = argparse.ArgumentParser() parser.add_argument('--foo', nargs='+') parser.add_argument('bar') which ...
2
votes
1answer
220 views

How to use argparse to collect arguments for a separate command line without --?

I'm writing Python programs that run other programs, like: my-wrapper-program --foo --bar git commit --all Here, foo and bar are arguments to my-wrapper-program, and git commit --all is the ...

1 2 3