Python: How to read stdout of subprocess in a nonblocking way

前端 未结 2 721
予麋鹿
予麋鹿 2020-12-16 02:38

I am trying to make a simple python script that starts a subprocess and monitors its standard output. Here is a snippet from the code:

process = subprocess.P         


        
相关标签:
2条回答
  • 2020-12-16 02:59

    Check select module

    import subprocess
    import select
    import time
        
    x=subprocess.Popen(['/bin/bash','-c',"while true; do sleep 5; echo yes; done"],stdout=subprocess.PIPE)
        
    y=select.poll()
    y.register(x.stdout,select.POLLIN)
    
    while True:
      if y.poll(1):
         print x.stdout.readline()
      else:
         print "nothing here"
         time.sleep(1)
    

    EDIT:

    Threaded Solution for non posix systems:

    import subprocess
    from threading import Thread 
    import time
     
    linebuffer=[]
    x=subprocess.Popen(['/bin/bash','-c',"while true; do sleep 5; echo yes; done"],stdout=subprocess.PIPE)
    
    def reader(f,buffer):
       while True:
         line=f.readline()
         if line:
            buffer.append(line)
         else:
            break
    
    t=Thread(target=reader,args=(x.stdout,linebuffer))
    t.daemon=True
    t.start()
    
    while True:
      if linebuffer:
         print linebuffer.pop(0)
      else:
         print "nothing here"
         time.sleep(1)
    
    0 讨论(0)
  • 2020-12-16 03:16

    You could try this:

    import subprocess
    import os
    
    """ Continuously print command output """
    """ Will only work if there are newline characters in the output. """
    
    def run_cmd(command):    
        popen = subprocess.Popen(command, stdout=subprocess.PIPE)
        return iter(popen.stdout.readline, b"")
    
    for line in run_cmd([path_to_exe, os.path.join(temp_dir,temp_file)]):
        print(line), # the comma keeps python from adding an empty line
    
    0 讨论(0)
提交回复
热议问题