2

试图让我的脚本更通用,所以我添加了一些标志。我的问题是,只有当您键入 -h 时,帮助才有效。我想在没有选择标志时调用 -h 。

例如:

python 0_log_cleaner.py

Traceback (most recent call last):
      File "0_log_cleaner.py", line 51, in <module>
    getFiles(options.path,options.org_phrase,options.new_phrase,options.org_AN,options.new_AN,options.dst_path)
  File "0_log_cleaner.py", line 37, in getFiles
    for filename in os.listdir(path):
TypeError: coercing to Unicode: need string or buffer, NoneType found

但如果我添加 -h 我会得到:

python 0_log_cleaner.py -h

用法:示例:

python  0_log_cleaner.py --sp original_logs/ --dp clean_logs/ --od CNAME --nd New_CNAME --oan 10208 --nan NewAN

Options:
  -h, --help       show this help message and exit
  --sp=PATH        Path to the source logs ie original_logs/
  --dp=DST_PATH    Path to where sanitized logs will be written to ie
                   clean_logs
  --od=ORG_PHRASE  original domain name ie www.clientName.com, use the command
                   -od clientName
  --nd=NEW_PHRASE  domain name to replace -od. ie -od clientName -nd domain
                   makes all log that use to be www.clientName.com into
                   www.domain.com
  --oan=ORG_AN     original AN number
  --nan=NEW_AN     AN number to replace original. ie -oan 12345 -nan AAAA1
                   replaces all instances of the AN number 12345 with AAAA1

编辑我的代码的 3 ANSWER 示例以生成 ^

import argparse
import sys

usage = "Description of function"
parser = argparse.ArgumentParser(description=usage)

parser.add_argument("--sp", dest="path", help='Path to the source logs ie logs/')
...
...(additional add arugments)

args = parser.parse_args()


def getFiles(path,org_phrase,new_phrase,org_AN,new_AN,dst_path):
    if not len(sys.argv) > 1:
        parser.print_help()
    else:
        run your logic
4

3 回答 3

2

从这里借用:Argparse:检查是否有任何参数已通过

最终代码如下所示:

import argparse
import sys

usage = "Description of function"
parser = argparse.ArgumentParser(description=usage)

parser.add_argument("--sp", dest="path", help='Path to the source logs ie logs/')
...
...(additional add arugments)

args = parser.parse_args()


def getFiles(path,org_phrase,new_phrase,org_AN,new_AN,dst_path):
    if not len(sys.argv) > 1:
        parser.print_help()
    else:
        run your logic
于 2017-04-08T02:53:28.397 回答
1

如果有人仍然对(非常简单的)解决方案感兴趣:

parser = argparse.ArgumentParser()
parser.add_argument("jfile", type=str, help="Give the JSON file name.")
parser.add_argument("--output", type=str, help="Type in the final excel files name.")
try:
    args = parser.parse_args()
    return args
except:
    parser.print_help()

我的教授希望脚本强制 -h / --help 页面,即使参数太少也是如此。而不是像“python SCRIPT.py -h”那样。所以我在这里所做的就像:“尝试解析参数。如果它有效,请将它们返回给主要方法。否则,如果你失败(除了),打印帮助()。好的?很好”。;)

于 2017-12-13T21:01:14.110 回答
0

在不知道您正在解析的方法的情况下,我将假设以下内容(如果我错了,请评论我或使用一些有关如何处理解析的代码编辑您的问题):

  1. 您正在解析所有内容并将其放入变量中。让它parsed成为那个变量。
  2. 您正在检查parsed是否存在任何选项标志。

您可能没有检查参数是否不存在

parsed = '' <- empty string
# or if you are using a list:
# parsed = []

if parsed: <- if parsed is not empty ("" or []) returns true
    Do your stuff here, because you have options now
else: <- Differently options were not provided
    Invoke the same method that you invoke when the option is -h

同样正如@dhke 建议的那样,如果您还没有使用argparse ,请考虑使用它!

编辑#1: 针对您的具体情况进行翻译:

args = parser.parse_args() <-- ending line of your provided code

if not args:
    parser.print_help()
else:
    Do your stuff
于 2017-04-07T22:18:50.690 回答