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中模块pymysql查询结果后如何获取字段列表
Jun 05 Python
python2.7 mayavi 安装图文教程(推荐)
Jun 22 Python
python网络爬虫 Scrapy中selenium用法详解
Sep 28 Python
python-视频分帧&多帧合成视频实例
Dec 10 Python
Python如何基于rsa模块实现非对称加密与解密
Jan 03 Python
python如何实现复制目录到指定目录
Feb 13 Python
PyQt5 如何让界面和逻辑分离的方法
Mar 24 Python
Python读取excel文件中带公式的值的实现
Apr 17 Python
django正续或者倒序查库实例
May 19 Python
Pycharm中配置远程Docker运行环境的教程图解
Jun 11 Python
pycharm 如何取消连按两下shift出现的全局搜索
Jan 15 Python
如何用Python徒手写线性回归
Jan 25 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 分页类实现代码
2009/12/03 PHP
php实现smarty模板无限极分类的方法
2015/12/07 PHP
php-fpm开启状态统计的方法详解
2017/06/23 PHP
PHP的JSON封装、转变及输出操作示例
2019/09/27 PHP
图片按比例缩放函数
2006/06/26 Javascript
JS 文字符串转换unicode编码函数
2009/05/30 Javascript
防止xss和sql注入:JS特殊字符过滤正则
2013/04/18 Javascript
js中复制行和删除行的操作实例
2013/06/25 Javascript
jQuery实现动画效果的简单实例
2014/01/27 Javascript
jQuery分组选择器用法实例
2014/12/23 Javascript
jQuery实现ichat在线客服插件
2014/12/29 Javascript
浅谈javascript面向对象程序设计
2015/01/21 Javascript
jquery模拟alert的弹窗插件
2015/07/31 Javascript
js+ajax实现获取文件大小的方法
2015/12/08 Javascript
Node.js刷新session过期时间的实现方法推荐
2016/05/18 Javascript
通过正则表达式获取url中参数的简单实现
2016/06/07 Javascript
js数组常用操作方法小结(增加,删除,合并,分割等)
2016/08/02 Javascript
关于原生js中bind函数的简单实现
2016/08/10 Javascript
js css自定义分页效果
2017/02/24 Javascript
教你快速搭建Node.Js服务器的方法教程
2017/03/30 Javascript
webpack构建vue项目的详细教程(配置篇)
2017/07/17 Javascript
JS使用遮罩实现点击某区域以外时弹窗的弹出与关闭功能示例
2018/07/31 Javascript
python连接字符串的方法小结
2015/07/13 Python
numpy中的delete删除数组整行和整列的实例
2018/05/09 Python
win10 64bit下python NLTK安装教程
2018/09/19 Python
python FTP批量下载/删除/上传实例
2019/12/22 Python
Pytorch之contiguous的用法
2019/12/31 Python
python 通过邮件控制实现远程控制电脑操作
2020/03/16 Python
NUK奶瓶美国官网:NUK美国
2016/09/26 全球购物
荷兰超市:DEEN
2018/03/14 全球购物
优秀毕业生求职信范文
2014/01/02 职场文书
中文专业毕业生自荐信
2014/05/24 职场文书
孝敬父母的活动方案
2014/08/28 职场文书
党校学习心得体会范文
2014/09/09 职场文书
校运会广播稿
2015/08/19 职场文书
Android Studio实现带三角函数对数运算功能的高级计算器
2022/05/20 Java/Android