![]() |
2010-07-12
, 00:50
|
Posts: 6 |
Thanked: 3 times |
Joined on May 2010
|
#2
|
Is there any way to get a QTextBrowser to append lines read from stdout in real time?
Example (doesn't work)
Code:proc = subprocess.Popen('/home/user/test.sh', shell=True, stdout=subprocess.PIPE, ) for line in iter(proc.stdout.readline,''): self.displaybox.append(line) print line
The Following User Says Thank You to :-) For This Useful Post: | ||
![]() |
2010-07-12
, 06:36
|
Posts: 46 |
Thanked: 5 times |
Joined on Sep 2009
|
#3
|
One way to do this is to call the application's processEvents() method every so often. You could try calling it after you read each line, though it might be a bit inefficient to do so. The global QApplication instance is available as the qApp object, or you can obtain it using QApplication.instance().
Example (doesn't work)
Any ideas?