python通过getopt模块如何获取执行的命令参数详解


Posted in Python onDecember 29, 2017

前言

python脚本和shell脚本一样可以获取命令行的参数,根据不同的参数,执行不同的逻辑处理。

通常我们可以通过getopt模块获得不同的执行命令和参数。下面话不多说了,来一起看看详细的介绍吧。

方法如下:

下面我通过新建一个test.py的脚本解释下这个模块的的使用

#!/usr/bin/python
# -*- coding: utf-8 -*-
import sys
import getopt
if __name__=='__main__':
 print sys.argv
 opts, args = getopt.getopt(sys.argv[1:], "ht:q:", ["url=",'out'])
 print opts
 print args

执行命令 :

./test3.py -t 20171010-20171011 -q 24 -h --url=https://www.baidu.com --out file1 file2

执行结果 :

['D:/GitReposity/hope_crontab_repo/sla_channel/test3.py', '-t', '20171010-20171011', '-q', '24', '-h', '--url=https://www.baidu.com', '--out', 'file1', 'file2']
[('-t', '20171010-20171011'), ('-q', '24'), ('-h', ''), ('--url', 'https://www.baidu.com'), ('--out', '')]
['file1', 'file2']

我们查看getopt模块的官方文档

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

Parses command line options and parameter list. args is the
argument list to be parsed, without the leading reference to the
running program. Typically, this means "sys.argv[1:]". shortopts
is the string of option letters that the script wants to
recognize, with options that require an argument followed by a
colon (i.e., the same format that Unix getopt() uses). If
specified, longopts is a list of strings with the names of the
long options which should be supported. The leading '--'
characters should not be included in the option name. Options
which require an argument should be followed by an equal sign
('=').

The return value consists of two elements: the first is a list of
(option, value) pairs; the second is the list of program arguments
left after the option list was stripped (this is a trailing slice
of the first argument). Each option-and-value pair returned has
the option as its first element, prefixed with a hyphen (e.g.,
'-x'), and the option argument as its second element, or an empty
string if the option has no argument. The options occur in the
list in the same order in which they were found, thus allowing
multiple occurrences. Long and short options may be mixed.

可以发现getopt方法需要三个参数。

第一个参数是args是将要解析的命令行参数我们可以通过sys.argv获取执行的相关参数

['D:/GitReposity/hope_crontab_repo/sla_channel/test3.py', '-t', '20171010-20171011', '-q', '24', '-h', '--url=https://www.baidu.com']

可以看出参数列表的第一个值是脚本执行的完全路径名,剩余参数是以空格分割的命令行参数。为了获得有效参数,通常args参数的值取sys.argv[1:]

第二个参数是shortopts是短命令操作符,他的参数要包含命令行中以 -符号开头的参数,像上面的例子中qht都以为 -开头,所以qht是该脚本的短命令,短命令又是如何匹配参数的呢?可以看到例子中shotopts为 "ht:q:" ,这里用命令后面跟着 : 来申明这个命令是否需要参数,这里h不需要参数,t和q需要参数,而命令行中紧跟着t和q的参数即为他们的命令参数,即t的命令参数为 20171010-20171011 ,q的命令参数为 24 。

第三个参数是longopts,改参数是个数组, 表示长命令操作符集合。这个集合要包含命令行中以 -- 符号开头的参数,url和out都是长命令,当长命令后面以 = 结尾是表示他需要一个参数,比如"url=" ,他匹配命令行中的下一个参数https://www.baidu.com.

该方法返回两个数组元素。第一个返回值,是通过shortopts和longopts匹配的命令行和其参数的元祖。该例子的返回值为:

[('-t', '20171010-20171011'), ('-q', '24'), ('-h', ''), ('--url', 'https://www.baidu.com'), ('--out', '')]
['file1', 'file2']

第二个返回值是命令行中未被匹配到的参数,该例子的返回值为:

['file1', 'file2']

通过返回值我们就可以在自己的代码中,根据不同命令去设计不同的逻辑处理,相当丰富了脚本的可用性。

总结

以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,如果有疑问大家可以留言交流,谢谢大家对三水点靠木的支持。

Python 相关文章推荐
全面了解python字符串和字典
Jul 07 Python
Django数据库表反向生成实例解析
Feb 06 Python
Django重装mysql后启动报错:No module named ‘MySQLdb’的解决方法
Apr 22 Python
对python抓取需要登录网站数据的方法详解
May 21 Python
PyCharm搭建Spark开发环境实现第一个pyspark程序
Jun 13 Python
利用Python进行图像的加法,图像混合(附代码)
Jul 14 Python
python Tcp协议发送和接收信息的例子
Jul 22 Python
python实现桌面托盘气泡提示
Jul 29 Python
已安装tensorflow-gpu,但keras无法使用GPU加速的解决
Feb 07 Python
Python3操作读写CSV文件使用包过程解析
Apr 10 Python
python函数调用,循环,列表复制实例
May 03 Python
python Matplotlib数据可视化(1):简单入门
Sep 30 Python
基于并发服务器几种实现方法(总结)
Dec 29 #Python
Python matplotlib画图实例之绘制拥有彩条的图表
Dec 28 #Python
python操作列表的函数使用代码详解
Dec 28 #Python
Python读csv文件去掉一列后再写入新的文件实例
Dec 28 #Python
python3.6连接MySQL和表的创建与删除实例代码
Dec 28 #Python
python3使用scrapy生成csv文件代码示例
Dec 28 #Python
浅谈Scrapy框架普通反爬虫机制的应对策略
Dec 28 #Python
You might like
php实现12306火车票余票查询和价格查询(12306火车票查询)
2014/01/14 PHP
PHP结合JQueryJcrop实现图片裁切实例详解
2014/07/24 PHP
ThinkPHP的MVC开发机制实例解析
2014/08/23 PHP
php获取文章上一页与下一页的方法
2014/12/01 PHP
php数组键名技巧小结
2015/02/17 PHP
php文件扩展名判断及获取文件扩展名的N种方法
2015/09/12 PHP
使用PHPMailer发送邮件实例
2017/02/15 PHP
JS 容错处理代码, 屏蔽错误信息
2021/03/09 Javascript
event.srcElement+表格应用
2006/08/29 Javascript
js 复制或插入Html的实现方法小结
2010/05/19 Javascript
js 剪切板应用clipboardData详细解析
2013/12/17 Javascript
js模仿php中strtotime()与date()函数实现方法
2015/08/11 Javascript
checkbox 选中一个另一个checkbox也会选中的实现代码
2016/07/09 Javascript
javascript数据类型详解
2017/02/07 Javascript
Vue 父子组件、组件间通信
2017/03/08 Javascript
浅谈angular4.0中路由传递参数、获取参数最nice的写法
2018/03/12 Javascript
JavaScript JSON数据处理全集(小结)
2019/08/15 Javascript
Vue实例的对象参数options的几个常用选项详解
2019/11/08 Javascript
python读取csv文件示例(python操作csv)
2014/03/11 Python
在Python的Flask框架中使用模版的入门教程
2015/04/20 Python
使用FastCGI部署Python的Django应用的教程
2015/07/22 Python
常见python正则用法的简单实例
2016/06/21 Python
Python中shutil模块的常用文件操作函数用法示例
2016/07/05 Python
python 批量解压压缩文件的实例代码
2019/06/27 Python
python实现小世界网络生成
2019/11/21 Python
Python列表倒序输出及其效率详解
2020/03/04 Python
18-35岁旅游团的全球领导者:Contiki
2017/02/08 全球购物
美国隐形眼镜网:Major Lens
2018/02/09 全球购物
加拿大时尚潮流大码女装购物网站:Addition Elle
2018/04/02 全球购物
好邻里事迹材料
2014/01/16 职场文书
班组长岗位职责
2014/03/03 职场文书
企业党员公开承诺书
2014/03/26 职场文书
保护环境倡议书500字
2014/05/19 职场文书
初中生庆国庆演讲稿范文2014
2014/09/25 职场文书
房屋所有权证明
2015/06/19 职场文书
Win11任务栏太宽了怎么办?一招解决Win11任务栏太宽问题
2021/11/21 数码科技