| |
---|
| | ##### |
---|
| | # List Of All Legal Options - Update This When You Add More!!!! |
---|
| | ##### |
---|
| | |
---|
| | OPTIONSLIST = 'ahv' |
---|
| | OPTIONSLIST = 'achv' |
---|
| | |
---|
| | |
---|
| | #----------------------------------------------------------# |
---|
| | # Variables User Might Change # |
---|
| |
---|
| | # Constants & Flags |
---|
| | ##### |
---|
| | |
---|
| | ALLSTRINGS = False |
---|
| | NOCASE = False |
---|
| | MATCHSEP = "---> " |
---|
| | |
---|
| | |
---|
| | ##### |
---|
| |
---|
| | uTable = [PROGVER, |
---|
| | "usage: " + PROGNAME + " [-%s]" % optionslist + " file.xls string string string ...", |
---|
| | " where,", |
---|
| | " -a require all strings to be present (AND matching)", |
---|
| | " -c ignore case when matching", |
---|
| | " -h print this help information", |
---|
| | " -v print version information", |
---|
| | " file.xls name of spreadsheet file to read", |
---|
| | " string ... list of strings that will trigger a match", |
---|
| |
---|
| | |
---|
| | if opt == "-a": |
---|
| | ALLSTRINGS = True |
---|
| | |
---|
| | if opt == "-c": |
---|
| | NOCASE = True |
---|
| | |
---|
| | if opt == "-h": |
---|
| | Usage() |
---|
| | sys.exit(0) |
---|
| | |
---|
| |
---|
| | |
---|
| | # Check for matching strings and flag accordingly |
---|
| | |
---|
| | for matchstring in MATCHSTRINGS: |
---|
| | if value.lower().count(matchstring.lower()): |
---|
| | |
---|
| | # See if user asked for case insensitive matching |
---|
| | |
---|
| | if NOCASE: |
---|
| | value = value.lower() |
---|
| | matchstring = matchstring.lower() |
---|
| | |
---|
| | # Check for matches |
---|
| | |
---|
| | if value.count(matchstring): |
---|
| | matched = True |
---|
| | matchedstrings[matchstring] = True |
---|
| | |
---|
| | # Deal with AND Matching |
---|
| |
---|
| | |