Skip to content
Advertisement

Option with optional argument

Suppose that I have

JavaScript

I would like to distinguish in my code:

  • --files not specified.
  • --files specified, but with no argument to accept the default.
  • --files myfile, i.e. --files specified with custom argument.

With the current docstring I can either

  • Not specify --files.
  • Specify --files with an argument.

So I’m missing:

  • The option to specify --files without an argument.
  • Distinguish if --files was specified, or if the user specified --files foo.txt

Advertisement

Answer

You will need to specify the --files argument in the main usage string. For example:

JavaScript

This essentially makes --files a true/false argument and adds another argument FNAME to hold the file name. Usage:

JavaScript

Then, you can use the value of --files and FNAME from the returned dict to infer what to do:

JavaScript

A pitfall to remember: you can also specify FNAME independently of --files. So this also works, and it might interfere with other arguments, so be sure to test all combinations thoroughly:

JavaScript

Personally, I prefer using argparse because it’s less ambiguous. It builds the doc string from the prescribed arguments, not the other way round.

In argparse, an argument can have a default value and you can specify that it can take zero or one argument using nargs="?". Then, you can specify a const="foo.txt" value which the argument will take if no values are given. For example:

JavaScript

And running this:

JavaScript

And it even handles the “no --files” case correctly:

JavaScript
Advertisement