V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
推荐学习书目
Learn Python the Hard Way
Python Sites
PyPI - Python Package Index
http://diveintopython.org/toc/index.html
Pocoo
值得关注的项目
PyPy
Celery
Jinja2
Read the Docs
gevent
pyenv
virtualenv
Stackless Python
Beautiful Soup
结巴中文分词
Green Unicorn
Sentry
Shovel
Pyflakes
pytest
Python 编程
pep8 Checker
Styles
PEP 8
Google Python Style Guide
Code Style from The Hitchhiker's Guide
whx20202
V2EX  ›  Python

Python 调用 shell 的时候,如何获得持续输出?

  •  
  •   whx20202 · 2016-09-19 09:30:19 +08:00 · 3931 次点击
    这是一个创建于 2782 天前的主题,其中的信息可能已经有所发展或是发生改变。

    比如我用 apt-get -y install vim 这样的

    或者 ping www.baidu.com 这样的

    他屏幕回显肯定一大堆,每秒钟好几行,

    我想持续不断的获得回显,而不是等程序跑完了才获得

    有办法吗?

    10 条回复    2016-09-20 09:37:58 +08:00
    wangyongbo
        1
    wangyongbo  
       2016-09-19 09:54:08 +08:00   ❤️ 1
    p = subprocess.Popen('ping www.baidu.com > /dev/stdout', shell = True, stdout = subprocess.PIPE, stderr = subprocess.PIPE)
    p.stdout.readline()
    其他命令 应该都差不多吧。
    gimp
        2
    gimp  
       2016-09-19 09:58:37 +08:00   ❤️ 1
    cmd = 'ping -c 6 ' + url
    r = Popen(cmd, shell=True, stdout=PIPE)
    for line in iter(r.stdout.readline, b''):
    line = line.strip('\r\n')
    print line
    gimp
        3
    gimp  
       2016-09-19 09:59:29 +08:00
    上边的是 python2.7 的代码,缩进爆炸...
    whx20202
        4
    whx20202  
    OP
       2016-09-19 10:01:28 +08:00
    上面两位已感谢 我去试试哈
    lunaticus7
        5
    lunaticus7  
       2016-09-19 10:18:26 +08:00
    python -u
    Ethaniz
        6
    Ethaniz  
       2016-09-19 12:28:29 +08:00
    用 PIPE ,一定要及时消费,小心死锁
    264768502
        7
    264768502  
       2016-09-19 12:46:23 +08:00
    可以参考下面对 adb 的实现
    https://github.com/264768502/adb_wrapper/blob/master/adb_wrapper/adb_wrapper.py
    看 def _enqueue_output 和 def _adbcommand_blocking
    whx20202
        8
    whx20202  
    OP
       2016-09-19 14:19:17 +08:00
    @Ethaniz 好的 我去搜下 pipe 死锁的概念
    0xccff
        9
    0xccff  
       2016-09-19 22:20:05 +08:00
    输入输出重定向
    xFrank
        10
    xFrank  
       2016-09-20 09:37:58 +08:00
    用 subprocess.call 就行了
    关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   我们的愿景   ·   实用小工具   ·   1363 人在线   最高记录 6543   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 27ms · UTC 16:51 · PVG 00:51 · LAX 09:51 · JFK 12:51
    Developed with CodeLauncher
    ♥ Do have faith in what you're doing.