Tagged Questions

27
votes
11answers
15k views

Command Line Arguments In Python

I am originally a C programmer. I have seen numerous tricks and "hacks" to read many different arguments. What are some of the ways Python programmers can do this? Related What’s the best way to ...
22
votes
9answers
3k views

What's the best way to grab/parse command line arguments passed to a Python script?

The title says it all...what's the easiest, tersest, and most flexible method or library for parsing Python command line arguments?
15
votes
5answers
3k views

How do I format positional argument help using Python's optparse?

As mentioned in the docs the optparse.OptionParser uses an IndentedHelpFormatter to output the formatted option help, for which which I found some API documentation. I want to display a similarly ...
14
votes
3answers
2k views

Windows is not passing command line arguments to Python programs executed from the shell

I'm having trouble getting command line arguments passed to Python programs if I try to execute them directly as executable commands from a Windows command shell. For example, if I have this program ...
9
votes
5answers
2k views

How can I process command line arguments in Python?

What would be an easy expression to process command line arguments if I'm expecting anything like 001 or 999 (let's limit expectations to 001...999 range for this time), and few other arguments ...
6
votes
5answers
382 views

Parse config file and command-line arguments, to get a single collection of options

Python's standard library has modules for configuration file parsing (configparser) and command-line argument parsing (optparse, argparse). I want to write a program that does both, but also: Has a ...
4
votes
4answers
63 views

how to format a shell command line from a list of arguments in python

I have a list of arguments, e.g. ["hello", "bobbity bob", "bye"]. How would I format these so they would be passed appropriately to a shell? Wrong: >>> " ".join(args) hello bobbity bob bye ...
4
votes
1answer
201 views

Python Option Parser: Boolean flag with optional parameters

I'm using optparse.OptionParser to manage arguments for some scripts, and something I was wondering / would like to do is have boolean flags (i.e action=store_true) that can also accept a parameter. ...
4
votes
1answer
352 views

Python: Pass a generic dictionary as a command line arguments

I have a script that needs to take in the name of a file and a set of key=value pairs. The set of key=value pairs is not defined. They are dependent on the file that was passed in. eg: Script.py ...
4
votes
5answers
244 views

What is the equivalent of Perl's (<>) in Python? fileinput doesn't work as expected

In Perl one uses: while (<>) { # process files given as command line arguments } In Python I found: import fileinput for line in fileinput.input(): process(line) But, what happens ...
4
votes
4answers
450 views

Processing command-line arguments in prefix notation in Python

I'm trying to parse a command-line in Python which looks like the following: $ ./command -o option1 arg1 -o option2 arg2 arg3 In other words, the command takes an unlimited number of arguments, and ...
4
votes
2answers
3k views

When running a python script in IDLE, is there a way to pass in command line arguments (args)?

I'm testing some python code that parses command line input. Is there a way to pass this input in through IDLE? Currently I'm saving in the IDLE editor and running from a command prompt. I'm running ...
4
votes
4answers
302 views

Lua equivalent to shlex?

Is there a Lua equivalent for python's shlex library?
3
votes
1answer
81 views

Python argument to provide less-like limiting functionality

Any idea if there is a clean way to make optparse bypass/handle a generic -XXX option ? My case is an application for which i want to provide a less like option to limit the application s output ...
3
votes
2answers
100 views

Python, command line argument parsing

Extremely simple question, how do you accept/parse command line arguments for a py file that has no class? Here is what I have inside my file test.py: import sys if __name__ == '__main__': How do ...
3
votes
2answers
135 views

Parsing command line arguments in Python: getting a KeyError

I am trying execute my Python script as: python series.py supernatural 4 6 Supernatural : TV Series name 4 : season number 6 : episode number Now in my script I am using the above three ...
3
votes
3answers
110 views

Command Line app arguments style guide

Is there a style guide to writing command line applications' arguments on unix platforms? Coming from the iOS world I'm thinking of something akin to the Human Interface Guidelines (HIG). I'm writing ...
3
votes
2answers
175 views

How to prevent the command line argument from being encoded?

(Problem solved, please see the updates) I have some files that have incorrect filenames because of encoding issues. So I want to write a python script to process it. However, I encounter a strange ...
3
votes
3answers
323 views

Python ArgParse Subparsers and linking to the correct function

I'm creating a small Python script to manage different classes of servers (FTP, HTTP, SSH, etc.) On each type of server, we can perform different types of actions (deploy, configure, check, etc.) I ...
3
votes
4answers
297 views

Passing meta-characters to Python as arguments from command line

I'm pretty new to programming, so any help is appreciated. Thanks in advance. I'm making a Python program that will parse the fields in some input lines. I'd like to let the user enter the field ...
3
votes
2answers
946 views

Passing Command line argument to Python program using IDLE?

I have downloaded a python file xxxxxx.py that is supposed to run on the command line by typing: python xxxxxx.py filename1 filename2 and that should take these two files as arguments. I was ...
3
votes
3answers
2k views

Nose test script with command line arguments

I would like to be able to run a nose test script which accepts command line arguments. For example, something along the lines: test.py import nose, sys def test(): # do something with the ...
2
votes
3answers
105 views

Are there any standard Command line conventions for dashes and arguments?

what are the command line conventions regarding when to use 2 dashes, 1 dash, or simply no options at all and simply read inputs in order ? I realize there are many variants, but do any conventions ...
2
votes
1answer
143 views

Run Python scripts from Windows command line, argument not passed

I have a bunch of scripts written in Python. I run them from a Windows command prompt like c:> my_script.py arg1 arg2 arg3 This works in every computer and every Windows version since many ...
2
votes
3answers
177 views

Passing a List to Python From Command Line

I would like to make my python script run from the command line when supplies with some arguments. However, one of the arguments should be a list of options specific to one segment of the script. ...
2
votes
1answer
74 views

usage function doesn't work with getopt

I have a problem with a usage function in Python. This is a part of my main function: def main(argv): try: opts, args = getopt.getopt(argv, 'hi:o:tbpms:', ['help', 'input=', ...
2
votes
2answers
264 views

How to unittest command line arguments?

I am trying to supply command line arguments to Python unittest and facing some issues. I have searched on internet and found a way to supply arguments as unittest.main(argv=[myArg]) The issue is ...
2
votes
5answers
361 views

Getting command line arguments as tuples in python

This might be a trivial issue, but I am a beginner at Python. Here is an example of how I would like to call my script: python script.py -f file1.txt "string1" "string2" -f file2.txt "string3" ...
2
votes
2answers
104 views

Python Optparse from Argument String

Typically one may simply call optparse's method parse_args without any arguments. If, however, one needs to supply a different argument set than that of sys.argv, if may be passed to parse_args. But ...
1
vote
3answers
133 views

Python command line script. Two scenarios of using. How to implement arguments parsing?

I have a python command line script that may be used in two different ways. First scenario is like this: script.py -max MAX -min MIN -delta DELTA where -max and -min are required arguments and ...
1
vote
1answer
65 views

Using argparse in conjunction with sys.argv in Python

I currently have a script, which uses file globbing via the sys.argv variable like this: if len(sys.argv) > 1: for filename in sys.argv[1:]: This works great for processing a bunch of ...
1
vote
2answers
33 views

argsparse store false if unspecified

parser.add_argument('-auto', action='store_true') How can I store false if -auto is unspecified? I can faintly remember that this way, it stores None if unspecified
1
vote
3answers
56 views

creating an array from a command line option (python::optparse)

There is a python script which reads a benchmark name from command line like this: -b benchname1 The code for this perpose is: import optparse import Mybench parser = optparse.OptionParser() # ...
1
vote
4answers
48 views

Instruction manual to a python script

What is the best way of documenting or creating some kind of mini manual for a python script. e.g script -h to display how to run it. Any templates?
1
vote
2answers
125 views

python - elegantly handle sequence of multiple arguments

Thus far I was handling multiple arguments via Optparse as a string, Eg: --update_entities="host_group hostname entity_type entities2monitor" where entities2monitor has variable arguments, ...
1
vote
3answers
175 views

Python, run application with parameters

I need to run an application (binary file) and pass arguments using a Python code. Some arguments represent strings got during Python file processing. for i in range ( len ( files ) ) : ...
1
vote
2answers
166 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 ...
1
vote
1answer
191 views

How do I 'fake' a form POST request on the commandline in ssh with python?

I have a small question about a problem I encountered writing my first python web application. I have a form on my site which action is a python file. The forms posts the values of 2 inputboxes in a ...
1
vote
2answers
847 views

Python read from command line arguments or stdin

When writing text-oriented command line programs in Python, I often want to read either all the files passed on the command line, or (XOR) standard input (like Unix cat does, or Perl's <>). So, ...
1
vote
1answer
106 views

Ordered options in Python's optparse

First of all, I know optparse is deprecated since version 2.7, but I only have Python 2.3 available in the machine I'm working. The question is how to know the order in which the options were given ...
1
vote
2answers
373 views

running an external program (executable) with parameter with python

Hi I am trying to automate a command line program. The exe file take one argument to run. Example ztac.exe (say mode options are safe, normal or debug) to run in debug mode I simply type this in ...
1
vote
8answers
417 views

Python: Create a tuple from a command line input

I have a program which provides a command line input like this: python2.6 prog.py -p a1 b1 c1 Now, we can have any number of input parameters i.e. -p a1 and -p a1 c1 b1 e2 are both possibilities. I ...
1
vote
1answer
134 views

efficient and complete input check for command line argument and option with python

I am developing cli with python version 2.4.3. i want to have the input exception check. The following is part of the code. With this code, I can type addcd -t 11 and if I type addcd -t ...
1
vote
3answers
206 views

how to implement the options/arguments for the command line functions in python

my python version is 2.4.3. Now I am developing a CLI with cmd module from python for a CD player. I have some classes like CDContainer (with method like addCD, removeCD, etc), CD (with method like ...
1
vote
4answers
333 views

Python magical main() signature like Perl 6

Does python have any way to easily and quickly make CLI utilities without lots of argument parsing boilerplate? In perl6, the signature for the MAIN sub automagically parses command line arguments. ...
1
vote
2answers
245 views

symbols in command line argument.. python, bash

I am writing a python script on Linux for twitter post using API, Is it possible to pass symbols like "(" ")" etc in clear text without apostrophes.... % ./twitterupdate this is me #works fine % ...
1
vote
2answers
513 views

Pass in a value into Python Class through command line

I have got some code to pass in a variable into a script from the command line. I can pass any value into function for the var arg. The problem is that when I put function into a class the variable ...
1
vote
1answer
540 views

Automatically open files given as command line arguments in Python

I have a lot of Perl scripts that looks something like the following. What it does is that it will automatically open any file given as a command line argument and in this case print the content of ...
1
vote
3answers
580 views

Forwarding command line arguments to a process in Python

I'm using a crude IDE (Microchip MPLAB) with C30 toolchain on Windows XP. The C compiler has a very noisy output that I'm unable to control, and it's very hard to spot actual warnings and errors in ...
0
votes
1answer
52 views

string splitting in python with ignoring \r \n cases

I am having this problem which is really weird I am trying to solve it and i can't find the best way. I am passing this string as an argv[] "copy c:\root c:\noot" in python. and i want to gave ...

1 2