gpt4 book ai didi

python - 设置并要求默认 Python 脚本 OptionParser

转载 作者:太空宇宙 更新时间:2023-11-03 19:31:59 25 4
gpt4 key购买 nike

以下“parser.add_option”语句有效,但如果脚本在没有选项/参数的情况下运行,它不会提示。如果未指定选项/参数,我希望它默认显示帮助(-h/--help)。

usage = "usage: %prog [options] arg"
parser = OptionParser(usage)
parser.add_option('-d', '--directory',
action='store', dest='directory',
default=None, help='specify directory')
parser.add_option('-f', '--file',
action='store', dest='filename',
default=None, help='specify file')
parser.add_option('-v', '--version',
action="store_true", dest="show_version",
default=False, help='displays the version number')
(options, args) = parser.parse_args()
#if len(args) < 1:
# parser.error("incorrect number of arguments")

其次,如果我启用以下片段,即使指定选项/参数,我也会收到“错误:参数数量不正确”。

if len(args) < 1:
parser.error("incorrect number of arguments")

谢谢。

<小时/>

更新了带有回溯错误的代码

def main():
usage = "usage: %prog [options] arg"
parser = OptionParser(usage)
parser.add_option('-d', '--directory',
action='store', dest='directory',
default=None, help='specify directory')
parser.add_option('-f', '--file',
action='store', dest='filename',
default=None, help='specify file')
parser.add_option('-v', '--version',
action="store_true", dest="show_version",
default=False, help='displays the version number')
if len(sys.argv) == 1:
parser.print_help()
sys.exit()
(options, args) = parser.parse_args()

#if options.show_version:
# prog = os.path.basename(sys.argv[0])
# version_str = "1.0"
# print "version is: %s %s" % (prog, version_str)
# sys.exit(0)

filenames_or_wildcards = []

# remove next line if you do not want allow to run the script without the -f -d
# option, but with arguments
filenames_or_wildcards = args # take all filenames passed in the command line

# if -f was specified add them (in current working directory)
if options.filename is not None:
filenames_or_wildcards.append(options.filename)

回溯

$ python boto-backup.py Traceback (most recent call last):   File "boto-backup.py", line 41, in <module>
filenames_or_wildcards = args # take all filenames passed in the command line NameError: name 'args' is not defined

最佳答案

我会做这样的事情:

from optparse import OptionParser
import sys

def main():
usage = "usage: %prog [options] arg"
parser = OptionParser(usage)
parser.add_option('-d', '--directory',
action='store', dest='directory',
default=None, help='specify directory')
parser.add_option('-f', '--file',
action='store', dest='filename',
default=None, help='specify file')
parser.add_option('-v', '--version',
action="store_true", dest="show_version",
default=False, help='displays the version number')
if len(sys.argv) == 1:
parser.print_help()
sys.exit()
(options, args) = parser.parse_args()
# rest of program...

if __name__ == '__main__':
main()

因此我们设置了解析器和选项,然后检查是否有任何命令行输入。
如果没有,我们打印帮助消息并退出。否则我们继续执行程序。

当不使用命令行参数运行时,输出为:

Usage: your_script_name_here.py [options] argOptions:  -h, --help            show this help message and exit  -d DIRECTORY, --directory=DIRECTORY                        specify directory  -f FILENAME, --file=FILENAME                        specify file  -v, --version         displays the version number
<小时/>

编辑(响应更新的代码):
空格/缩进在 Python 中很重要。
确保代码的其余部分缩进,使其属于 main() 函数。
filenames_or_wildcards = [] 开始,您的代码超出了 main() 函数的范围,因此没有名为 args 的变量>.

关于python - 设置并要求默认 Python 脚本 OptionParser,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5359306/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com