代码语言
.
CSharp
.
JS
Java
Asp.Net
C
MSSQL
PHP
Css
PLSQL
Python
Shell
EBS
ASP
Perl
ObjC
VB.Net
VBS
MYSQL
GO
Delphi
AS
DB2
Domino
Rails
ActionScript
Scala
代码分类
文件
系统
字符串
数据库
网络相关
图形/GUI
多媒体
算法
游戏
Jquery
Extjs
Android
HTML5
菜单
网页交互
WinForm
控件
企业应用
安全与加密
脚本/批处理
开放平台
其它
【
Python
】
封装subprocess来执行命令
作者:
dangoakachan
/ 发布于
2012/10/8
/
952
<div>!/usr/local/python/bin # coding=utf-8</div> <div>'''A simple interface to execute shell commands.</div> <div>These ideas are taken from fabric/operations.py.</div> <div>Examples 1: execute local command</div> <div> # import command # out = command.local('uname -r') # print out.stdout 2.6.32 # print out.stderr '' # print out.succeeded True</div> <div>Example 2: execute command in remote host through ssh</div> <div> # import command # out = command.remote('10.x.x.x', 'uname -r') # print out.stdout 2.6.32 ''' __author__ = 'tuantuan.lv <<a href="mailto:dangoakachan@foxmail.com>'">dangoakachan@foxmail.com>'</a></div> import subprocess</div> <div> Taken from web/utils.py class Storage(dict): """ A Storage object is like a dictionary except `obj.foo` can be used in addition to `obj['foo']`.</div> <div> >>> o = storage(a=1) >>> o.a 1 >>> o['a'] 1 >>> o.a = 2 >>> o['a'] 2 >>> del o.a >>> o.a Traceback (most recent call last): ... AttributeError: 'a' """ def __getattr__(self, key): try: return self[key] except KeyError, k: raise AttributeError, k</div> <div> def __setattr__(self, key, value): self[key] = value</div> <div> def __delattr__(self, key): try: del self[key] except KeyError, k: raise AttributeError, k</div> <div> def __repr__(self): return '<Storage ' + dict.__repr__(self) + '>'</div> <div>def remote(ip, cmd, capture = True, timeout = None): ssh = "ssh -o StrictHostKeyChecking=no -o LogLevel=quiet -o BatchMode=yes"</div> <div> if timeout is not None: ssh += ' -o ConnectTimeout=%d' % timeout</div> <div> cmd = '%s %s "%s"' % (ssh, ip, cmd)</div> <div> return local(cmd, capture)</div> <div>def local(cmd, capture = True, shell = None): out_stream = subprocess.PIPE if capture else None err_stream = subprocess.PIPE if capture else None</div> <div> p = subprocess.Popen(cmd, shell = True, stdout = out_stream, stderr = err_stream, executable = shell)</div> <div> (stdout, stderr) = p.communicate()</div> <div> out = Storage()</div> <div> out.stdout = stdout.strip() if stdout else "" out.stderr = stderr.strip() if stdout else ""</div> <div> out.cmd = cmd</div> <div> out.failed = False out.return_code = p.returncode</div> <div> if p.returncode != 0: out.failed = True</div> <div> out.succeeded = not out.failed</div> <div> return out</div>
试试其它关键字
封装subprocess
同语言下
.
比较两个图片的相似度
.
过urllib2获取带有中文参数的url内容
.
不下载获取远程图片的宽度和高度及文件大小
.
通过qrcode库生成二维码
.
通过httplib发送GET和POST请求
.
Django下解决小文件下载
.
遍历windows的所有窗口并输出窗口标题
.
根据窗口标题调用窗口
.
python 抓取搜狗指定公众号
.
pandas读取指定列
可能有用的
.
实现测量程序运行时间及cpu使用时间
.
C#实现的html内容截取
.
List 切割成几份 工具类
.
SQL查询 多列合并成一行用逗号隔开
.
一行一行读取txt的内容
.
C#动态修改文件夹名称(FSO实现,不移动文件)
.
c# 移动文件或文件夹
.
c#图片添加水印
.
Java PDF转换成图片并输出给前台展示
.
网站后台修改图片尺寸代码
dangoakachan
贡献的其它代码
(
1
)
.
封装subprocess来执行命令
Copyright © 2004 - 2024 dezai.cn. All Rights Reserved
站长博客
粤ICP备13059550号-3