V2EX = way to explore
V2EX 是一个关于分享和探索的地方
Sign Up Now
For Existing Member  Sign In
推荐学习书目
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 · Sep 19, 2016 · 4793 views
    This topic created in 3514 days ago, the information mentioned may be changed or developed.

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

    或者 ping www.baidu.com 这样的

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

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

    有办法吗?

    10 replies    2016-09-20 09:37:58 +08:00
    wangyongbo
        1
    wangyongbo  
       Sep 19, 2016   ❤️ 1
    p = subprocess.Popen('ping www.baidu.com > /dev/stdout', shell = True, stdout = subprocess.PIPE, stderr = subprocess.PIPE)
    p.stdout.readline()
    其他命令 应该都差不多吧。
    gimp
        2
    gimp  
       Sep 19, 2016   ❤️ 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  
       Sep 19, 2016
    上边的是 python2.7 的代码,缩进爆炸...
    whx20202
        4
    whx20202  
    OP
       Sep 19, 2016
    上面两位已感谢 我去试试哈
    lunaticus7
        5
    lunaticus7  
       Sep 19, 2016
    python -u
    Ethaniz
        6
    Ethaniz  
       Sep 19, 2016
    用 PIPE ,一定要及时消费,小心死锁
    264768502
        7
    264768502  
       Sep 19, 2016
    可以参考下面对 adb 的实现
    https://github.com/264768502/adb_wrapper/blob/master/adb_wrapper/adb_wrapper.py
    看 def _enqueue_output 和 def _adbcommand_blocking
    whx20202
        8
    whx20202  
    OP
       Sep 19, 2016
    @Ethaniz 好的 我去搜下 pipe 死锁的概念
    0xccff
        9
    0xccff  
       Sep 19, 2016
    输入输出重定向
    xFrank
        10
    xFrank  
       Sep 20, 2016
    用 subprocess.call 就行了
    About   ·   Help   ·   Advertise   ·   Blog   ·   API   ·   FAQ   ·   Solana   ·   2479 Online   Highest 6679   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 237ms · UTC 07:15 · PVG 15:15 · LAX 00:15 · JFK 03:15
    ♥ Do have faith in what you're doing.