python数据分析用到的模块(python模块之subprocess模块级方法的使用)
python数据分析用到的模块
python模块之subprocess模块级方法的使用subprocess.run()
运行并等待args参数指定的指令完成,返回completedprocess实例。
参数:(*popenargs, input=none, capture_output=false, timeout=none, check=false, **kwargs)。除input, capture_output, timeout, check,其他参数与popen构造器参数一致。
capture_output:如果设置为true,表示重定向stdout和stderr到管道,且不能再传递stderr或stdout参数,否则抛出异常。
input:input参数将作为子进程的标准输入传递给popen.communicate()方法,必须是string(需要指定encoding或errors参数,或者设置text为true)或byte类型。非none的input参数不能和stdin参数一起使用,否则将抛出异常,构造popen实例的stdin参数将指定为subprocess.pipe。
timeout:传递给popen.communicate()方法。
check:如果设置为true,进程执行返回非0状态码将抛出calledprocesserror异常。
|
# 源码 def run( * popenargs, input = none, capture_output = false, timeout = none, check = false, * * kwargs): if input is not none: if 'stdin' in kwargs: raise valueerror( 'stdin and input arguments may not both be used.' ) kwargs[ 'stdin' ] = pipe if capture_output: if ( 'stdout' in kwargs) or ( 'stderr' in kwargs): raise valueerror( 'stdout and stderr arguments may not be used ' 'with capture_output.' ) kwargs[ 'stdout' ] = pipe kwargs[ 'stderr' ] = pipe with popen( * popenargs, * * kwargs) as process: try : stdout, stderr = process.communicate( input , timeout = timeout) except timeoutexpired: process.kill() stdout, stderr = process.communicate() raise timeoutexpired(process.args, timeout, output = stdout, stderr = stderr) except : # including keyboardinterrupt, communicate handled that. process.kill() # we don't call process.wait() as .__exit__ does that for us. raise retcode = process.poll() if check and retcode: raise calledprocesserror(retcode, process.args, output = stdout, stderr = stderr) return completedprocess(process.args, retcode, stdout, stderr) |
python3.5版本前,call(), check_all(), checkoutput()三种方法构成了subprocess模块的高级api。
subprocess.call()
运行并等待args参数指定的指令完成,返回执行状态码(popen实例的returncode属性)。
参数:(*popenargs, timeout=none, **kwargs)。与popen构造器参数基本相同,除timeout外的所有参数都将传递给popen接口。
调用call()函数不要使用stdout=pipe或stderr=pipe,因为如果子进程生成了足量的输出到管道填满os管道缓冲区,子进程将因不能从管道读取数据而导致阻塞。
|
# 源码 def call( * popenargs, timeout = none, * * kwargs): with popen( * popenargs, * * kwargs) as p: try : return p.wait(timeout = timeout) except : p.kill() p.wait() raise |
subprocess.check_call()
运行并等待args参数指定的指令完成,返回0状态码或抛出calledprocesserror异常,该异常的cmd和returncode属性可以查看执行异常的指令和状态码。
参数:(*popenargs, **kwargs)。全部参数传递给call()函数。
注意事项同call()
|
# 源码 def check_call( * popenargs, * * kwargs): retcode = call( * popenargs, * * kwargs) if retcode: cmd = kwargs.get( "args" ) if cmd is none: cmd = popenargs[ 0 ] raise calledprocesserror(retcode, cmd) return 0 |
subprocess.check_output()
运行并等待args参数指定的指令完成,返回标准输出(completedprocess实例的stdout属性),类型默认是byte字节,字节编码可能取决于执行的指令,设置universal_newlines=true可以返回string类型的值。
如果执行状态码非0,将抛出calledprocesserror异常。
参数:(*popenargs, timeout=none, **kwargs)。全部参数传递给run()函数,但不支持显示地传递input=none继承父进程的标准输入文件句柄。
要在返回值中捕获标准错误,设置stderr=subprocess.stdout;也可以将标准错误重定向到管道stderr=subprocess.pipe,通过calledprocesserror异常的stderr属性访问。
|
# 源码 def check_output( * popenargs, timeout = none, * * kwargs): if 'stdout' in kwargs: raise valueerror( 'stdout argument not allowed, it will be overridden.' ) if 'input' in kwargs and kwargs[ 'input' ] is none: # explicitly passing input=none was previously equivalent to passing an # empty string. that is maintained here for backwards compatibility. kwargs[ 'input' ] = ' ' if kwargs.get(' universal_newlines ', false) else b' ' return run( * popenargs, stdout = pipe, timeout = timeout, check = true, * * kwargs).stdout |
subprocess模块还提供了python2.x版本中commands模块的相关函数。
subprocess.getstatusoutput(cmd)
实际上是调用check_output()
函数,在shell中执行string类型的cmd指令,返回(exitcode, output)
形式的元组,output(包含stderr
和stdout
)是使用locale encoding解码的字符串,并删除了结尾的换行符。
|
# 源码 try : data = check_output(cmd, shell = true, universal_newlines = true, stderr = stdout) exitcode = 0 except calledprocesserror as ex: data = ex.output exitcode = ex.returncode if data[ - 1 :] = = '\n' : data = data[: - 1 ] return exitcode, data |
subprocess.getoutput(cmd)
与getstatusoutput()
类似,但结果只返回output。
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持开心学习网。
原文链接:https://segmentfault.com/a/1190000018658746
- pythonflask编写接口(Python Flask框架模板操作实例分析)
- python mongodb 基本操作(Python使用pymongo库操作MongoDB数据库的方法实例)
- python如何将xls转成xlsx(Python这样操作能存储100多万行的xlsx文件)
- python解析excel例子(Python玩转Excel的读写改实例)
- python面向对象练习方法(Python面向对象实现一个对象调用另一个对象操作示例)
- python3.7.2 详细安装教程(python3.5安装python3-tk详解)
- python使用aes加密解密(python实现AES和RSA加解密的方法)
- python下划线怎么用(Python3中_下划线和__双下划线的用途和区别)
- python将一个字符串逆序输出(Python字符串逆序的实现方法一题多解)
- python线程池的实现原理(详解python中的线程与线程池)
- python中dict怎么创建(Python数据类型之Dict字典实例详解)
- pythonmatplotlib怎么画区域(python matplotlib实现双Y轴的实例)
- pythonjson库(Python常用的json标准库)
- python使用门算法加密文件(python实现可逆简单的加密算法)
- python编写小程序实现密码验证(python实现扫描ip地址的小程序)
- python识别验证码教程(Python3.5 + sklearn利用SVM自动识别字母验证码方法示例)
- 菲律宾美食(菲律宾美食排行榜前十名)
- 菲律宾特产(菲律宾特产最值得买回国)
- 越南特产(越南特产首饰)
- TVB负评王连续挑战警察角色《使徒行者3》中将饰演卧底(TVB负评王连续挑战警察角色使徒行者3中将饰演卧底)
- 《精英律师》剧照首曝光,实力演员飙戏,演绎律政职场百态(精英律师剧照首曝光)
- 靳东领衔打造高精职场 新丽出品《精英律师》曝定妆照(靳东领衔打造高精职场)
热门推荐
- python如何判断两个数组相同(Python实现的合并两个有序数组算法示例)
- js的三种使用方法(JS带你深入领略Proxy的世界)
- js淘宝购物车效果代码(JavaScript实现电商平台商品细节图)
- sql server 分布式事务(Sql Server事务语法及使用方法实例分析)
- python 暗弱目标提取(Python提取频域特征知识点浅析)
- h5实现弹出悬浮窗(Html5监听手机摇一摇事件的实现)
- Get和Post的区别
- javascript的执行原理(一文读懂JavaScript 中的延迟加载属性模式)
- 树莓派vnc设置失败(树莓派安装宝塔面板后VNC无法登陆的问题说明)
- mysql8.0配置优化参数(MySQL 8.0 新特性之检查约束的实现)
排行榜
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9