Trying to learn how to use outparse. So here is the situation, I think I got my setup correct its just how to set my options is kinda... confusing me. Basically I just want to check my filename to see if there are specific strings.
For example:
python script.py -f filename.txt -a hello simple
I want it to return something like...
Reading filename.txt....
The word, Hello, was found at: Line 10
The word, simple, was found at: Line 15
Here is what I have so far, I just don't know how to set it up correctly. Sorry for asking silly questions :P. Thanks in advance.
Here is the code thus far:
from optparse import OptionParser
def main():
usage = "useage: %prog [options] arg1 arg2"
parser = OptionParser(usage)
parser.add_option_group("-a", "--all", action="store", type="string", dest="search_and", help="find ALL lines in the file for the word1 AND word2")
(options, args) = parser.parse_args()
if len(args) != 1:
parser.error("not enough number of arguments")
#Not sure how to set the options...
if __name__ == "__main__":
main()
You should use
OptionParser.add_option()
...add_option_group()
isn't doing what you think it does... this is a complete example in the spirit of what you're after... note that--all
relies on comma-separating the values... this makes it easier, instead of using space separation (which would require quoting the option values for--all
.Also note that you should check
options.search_and
andoptions.filename
explicitly, instead of checking the length ofargs
Using your same example, invoke the script with...
python script.py -f filename.txt -a hello,simple