Tagged Questions

14
votes
5answers
514 views

Python: Which encoding is used for processing sys.argv?

What encoding are the elements of sys.argv in, in Python? are they encoded with the sys.getdefaultencoding() encoding? sys.getdefaultencoding(): Return the name of the current default string ...
8
votes
4answers
7k views

An integer is required? open()

I have a very simple python script that should scan a text file, which contains lines formatted as id='value' and put them into a dict. the python module is called chval.py and the input file is ...
2
votes
1answer
1k views

Python, how to parse strings to look like sys.argv

I would like to parse a string like this: -o 1 --long "Some long string" into this: ["-o", "1", "--long", 'Some long string'] or similar. This is different than either getopt, or optparse, ...
1
vote
3answers
85 views

Error when using argv

I'm learning Python using Learn Python The Hard Way. It is very good and efficient but at one point I had a crash. I've searched the web but could not find an answer. Here is my question: One of the ...
1
vote
4answers
109 views

Python: Assign multiple values at once: pass all argv arguments to a function

I want to pass all argv arguments to a function. I have created this code, but it gives me an error. How knows how to make this work? Many thanks for your help. if __name__ == "__main__": import ...
1
vote
3answers
449 views

Recursively matching filenames with glob argument

I have been trying to get a list of files matching a glob pattern in a command line argument (sys.argv[1]) recursively using glob.glob and os.walk. The problem is, bash (and many other shells it ...
1
vote
3answers
640 views

Learning the import argv module

I'm currently going through Learn Python The Hard Way. I think this example might be out dated so I wanted to get feedback here on it. I'm using Python 3.1 from sys import argv script, first, ...
1
vote
4answers
613 views

Problem with sys.argv[1] when unittest module is in a script

I have a script that does various things and access paramenters using sys.argv but when the script gets to the unittest part of the code it says there is no module for this. The script that I have is: ...
0
votes
1answer
127 views

argv vs. raw_input

I know that when using argv I have to type the file as an argument (ex: python ex15.py ex15_sample.txt) and when using raw_input I enter the filename as an input. But I can't seem to find out why ...
0
votes
2answers
64 views

Argument is URL or path

What is the standard practice in Python when I have a command-line application taking one argument which is URL to a web page or path to a HTML file somewhere on disk (only one) is sufficient the ...
0
votes
3answers
405 views

python: sys.argv[0] meaning in official documentation

Quoting from docs.python.org: "sys.argv The list of command line arguments passed to a Python script. argv[0] is the script name (it is operating system dependent whether this is a full pathname or ...
0
votes
2answers
101 views

can you flag command line inputs in python?

a lot of command-line .exe applications i use allow you flag optional inputs e.g. program.exe -o outputfile.txt -f F where "-o" indicates an optional output file name different to the default, and ...