Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #34299

Re: How does one make argparse print usage when no options are provided on the command line?

Date 2012-12-05 18:42 +0100
From Bruno Dupuis <python.ml.bruno.dupuis@lisael.org>
Subject Re: How does one make argparse print usage when no options are provided on the command line?
References <20121205084830.74e842119d151781db385406@lavabit.com>
Newsgroups comp.lang.python
Message-ID <mailman.505.1354729351.29569.python-list@python.org> (permalink)

Show all headers | View raw


On Wed, Dec 05, 2012 at 08:48:30AM -0800, rh wrote:
> I have argparse working with one exception. I wanted the program to print out
> usage when no command line options are given. But I only came across
> other examples where people didn't use argparse but instead printed out
> a separate usage statement. So they used argparse for everything but the
> case where no command line args are given.
> 

this is quite raw, but i'd add 

import sys
if len(sys.argv) == 1:
    sys.argv.append('-h')

before I call parser.parse_args()

Should work


-- 
Bruno Dupuis

Back to comp.lang.python | Previous | Next | Find similar | Unroll thread


Thread

Re: How does one make argparse print usage when no options are provided on the command line? Bruno Dupuis <python.ml.bruno.dupuis@lisael.org> - 2012-12-05 18:42 +0100

csiph-web