python使用getopt和sys解析命令行参数

python例子

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
#!/usr/bin/python3
# -*- coding: utf-8 -*-
import sys
import getopt
import os
import tarfile


untar_path = ""
out_dir = ""


def useage():
print("useage: untar -i <path> -o <out dir> ")
return


def parse_usage(argv):
try:
opts, args = getopt.getopt(argv,"hi:o:", ["help", "outdir=", "inpath="])
except getopt.GetoptError:
useage()
global untar_path
global out_dir
for opt, arg in opts:
if opt in ("-h", "--help"):
useage()
sys.exit()
elif opt in ("-i", "--inpath"):
untar_path = arg
elif opt in ("-o", "--outdir"):
out_dir = arg
if '' == untar_path:
useage()
sys.exit()
if '' == out_dir:
useage()
sys.exit()

if not os.path.isfile(untar_path):
print("{} is not file!".format(untar_path))
sys.exit()
if os.path.exists(out_dir):
if os.path.isfile(out_dir):
print("{} is file!".format(out_dir))
sys.exit()
else:
print("mkdir {}".format(out_dir))
os.mkdir(out_dir)
if not os.path.exists(out_dir):
print("{} is not exists!".format(out_dir))
sys.exit()
print("tar({}) \nout dir({})".format(untar_path, out_dir))
return


def untar(tarpath, outdir):
tar = tarfile.open(tarpath)
tar.extractall(path = outdir)
tar.close()
return


if __name__ == "__main__":
'''main'''
parse_usage(sys.argv[1:])
untar(untar_path, out_dir)

getopt —- C 风格的命令行选项解析器

源代码: Lib/getopt.py

1
注解: getopt 模块是一个命令行选项解析器,其 API 设计会让 C getopt() 函数的用户感到熟悉。 不熟悉 C getopt() 函数或者希望写更少代码并获得更完善帮助和错误消息的用户应当考虑改用 argparse 模块。

此模块可协助脚本解析 sys.argv 中的命令行参数。 它支持与 Unix getopt() 函数相同的惯例(包括形式如 '-''--' 的参数的特殊含义)。 也能通过可选的第三个参数来使用与 GNU 软件所支持形式相类似的长选项。

此模块提供了两个函数和一个异常:

getopt.getopt(args, shortopts, longopts=[])

  • 解析命令行选项与形参列表。 args 为要解析的参数列表,不包含最开头的对正在运行的程序的引用。 通常这意味着 sys.argv[1:]。 shortopts 为脚本所要识别的字母选项,包含要求后缀一个冒号 (‘:’;即与 Unix getopt() 所用的格式相同) 的选项。
    1
    注解: 与 GNU getopt() 不同,在非选项参数之后,所有后续参数都会被视为非选项。 这类似于非 GNU Unix 系统的运作方式。
    • 如果指定了 longopts,则必须为一个由应当被支持的长选项名称组成的列表。 开头的 '--' 字符不应被包括在选项名称中。 要求参数的长选项后应当带一个等号 ('=')。 可选参数不被支持。 如果想仅接受长选项,则 shortopts 应为一个空字符串。 命令行中的长选项只要提供了恰好能匹配可接受选项之一的选项名称前缀即可被识别。 举例来说,如果 longopts 为 ['foo', 'frob'],则选项 --fo 将匹配为 --foo,但 --f 将不能得到唯一匹配,因此将引发 GetoptError。
  • 返回值由两个元素组成:第一个是 (option, value) 对的列表;第二个是在去除该选项列表后余下的程序参数列表(这也就是 args 的尾部切片)。每个被返回的选项与值对的第一个元素是选项,短选项前缀一个连字符 (例如 '-x'),长选项则前缀两个连字符 (例如 ‘—long-option’),第二个元素是选项参数,如果选项不带参数则为空字符串。 列表中选项的排列顺序与它们被解析的顺序相同,因此允许多次出现。 长选项与短选项可以混用。

getopt.gnu_getopt(args, shortopts, longopts=[])

  • 此函数与 getopt() 类似,区别在于它默认使用 GNU 风格的扫描模式。 这意味着选项和非选项参数可能会混在一起。 getopt() 函数将在遇到非选项参数时立即停止处理选项。

  • 如果选项字符串的第一个字符为 ‘+’,或者如果设置了环境变量 POSIXLY_CORRECT,则选项处理会在遇到非选项参数时立即停止。

exception getopt.GetoptError

  • This is raised当参数列表中出现不可识别的选项或者当一个需要参数的选项未带参数时将引发此异常。 此异常的参数是一个指明错误原因的字符串。 对于长选项,将一个参数传给不需要参数的选项也将导致引发此异常。 msg 和 opt 属性会给出错误消息和关联的选项;如果没有关联到异常的特定选项,则 opt 将为空字符串。

exception getopt.error

  • GetoptError 的别名;用于向后兼容。

参考:

https://docs.python.org/zh-cn/3/library/getopt.html?highlight=getopt

请注意通过 argparse 模块可以使用更少的代码并附带更详细的帮助与错误消息生成等价的命令行接口