Velocity Reviews

Velocity Reviews (http://www.velocityreviews.com/forums/index.php)
-   Python (http://www.velocityreviews.com/forums/f43-python.html)
-   -   Re: How does one make argparse print usage when no options areprovided on the command line? (http://www.velocityreviews.com/forums/t955188-re-how-does-one-make-argparse-print-usage-when-no-options-areprovided-on-the-command-line.html)

Terry Reedy 12-06-2012 05:06 AM

Re: How does one make argparse print usage when no options areprovided on the command line?
 
On 12/5/2012 7:48 PM, rh wrote:
> On Wed, 5 Dec 2012 18:42:37 +0100
> Bruno Dupuis <python.ml.bruno.dupuis@lisael.org> wrote:
>
>> 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')

>
> This works too. I guess I like the print_usage() method better.
>
> Being new to python I have noticed that I had copied a bit of code that did
>
> if len(sys.argv[1:]) == 0:


This needlessly creates and tosses a new object.
>
> You did this:
> if len(sys.argv) == 1:


This does not.

> The other reply did this:
> if len(sys.argv) <= 1:


This allows for the possibility that len(sys.argv) == 0. However, that
can (according to the doc) only happen when starting the interpreter
interactively without a script. Since that does not apply to code within
a .py file, I prefer == 1.

"argv[0] is the script name (it is operating system dependent whether
this is a full pathname or not). If the command was executed using the
-c command line option to the interpreter, argv[0] is set to the string
'-c'. If no script name was passed to the Python interpreter, argv[0] is
the empty string."

--
Terry Jan Reedy



All times are GMT. The time now is 03:08 PM.

Powered by vBulletin®. Copyright ©2000 - 2013, vBulletin Solutions, Inc.
SEO by vBSEO ©2010, Crawlability, Inc.


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57