提问人:Joyfulgrind 提问时间:11/27/2012 最后编辑:Joyfulgrind 更新时间:11/28/2012 访问量:2274
如何在 Python 中显示和解析 rsync 进度?
How to show and parse rsync progress in Python?
问:
我正在使用 with 选项的开发版本。我正在编写一个 python 程序,它使用 rsync 将文件从服务器传输到本地计算机:rsync
--info-progress
finalresult = subprocess.Popen(['sshpass', '-p', password, 'rsync', '-avz', '--info=progress2', 'hostname:/filename', '/home/nfs/django/user'],
stdout=subprocess.PIPE).communicate()[0]
当我在终端中运行程序时,它不会向我显示进度,但是如果我独立使用 rsync 实用程序,它会显示进度。我想在终端中查看进度,并解析或获取进度百分比,以便稍后使用它来实时向用户显示进度条。谢谢!
编辑:这是我到目前为止尝试过的:
上面的代码将命令处理存储在变量中。我试图在 django 模板中打印变量,但它没有返回任何内容。finalresult
finalresult
答:
2赞
Zaur Nasibov
11/28/2012
#1
对不起,这可能既不能用标准库的其余部分完成,也不能用标准库的其余部分来完成。那是因为在里面你会发现:subprocess
subprocess.communicate()
def wait(self):
"""Wait for child process to terminate. Returns returncode
attribute."""
if self.returncode is None:
# Try calling a function os.waitpid(self.pid, 0)
# Ignore Interrupted System Call (errno.EINTR) errors
pid, sts = _eintr_retry_call(os.waitpid, self.pid, 0)
self._handle_exitstatus(sts)
return self.returncode
在 Unix 上,os.waitpid() 函数调用意味着: 等待进程 id pid 给出的子进程完成,并返回一个包含其进程 ID 和退出状态指示的元组。因此,您必须等到子进程完成。
最接近的替代方案是 pexpect,但它仍然不会进行进度条分析。一个可能的解决方案是破解 rsync 并修补其进度输出,以便 pexpect 可以使用它。
评论