我正在尝试从“ apt-get download firefox”之类的命令中读取最后一行。通常输出将是
Get:1 http://archive.ubuntu.com/ubuntu/ utopic/main firefox amd64 32.0+build1-0ubuntu2 [34.9 MB]
2% [1 firefox 646 kB/34.9 MB 2%]
最后一行不断更新(直到达到100%才写入换行符)。我现在的目标是实时阅读进度。这是我当前的示例代码:
#!/usr/bin/python3 -u
# coding=utf-8
import subprocess, sys
pipe = subprocess.Popen(['apt-get', 'download', 'firefox'], 0, stderr = subprocess.PIPE, stdout = subprocess.PIPE)
while True:
content = pipe.stdout.read(1).decode()
if content == '':
break
sys.stdout.write(content)
sys.stdout.flush()
pipe.wait()
我已经禁用了子进程调用的输出缓冲以及Python进程的二进制输出(带有-u参数)。但是我只得到第一行,而不是第二行的进度。有人知道我该怎么做到吗?
相关分类