我有一个文件script.py,它执行一些操作并使用一些“print”语句与用户进行通信。
使用PyQt5,我创建了一个单独的文件gui.py,我用一些小部件创建了一个GUI,包括一个“运行”按钮和一个QTextEdit。当我按下那个按钮时,我希望执行“script.py”并将其输出的每一行重定向到我的QTextEdit 上实时
我设法执行脚本并查看它的输出...但是,虽然它在控制台上完美运行,但只有当script.py结束执行时才会更新QTextEdit。
这是我的代码:
class gui(QWidget):
def __init__(self):
super().__init__()
self.initUI()
def initUI(self):
def run():
try:
p = subprocess.Popen("python script.py", stdout=subprocess.PIPE)
for line in iter(p.stdout.readline, b''):
if line != "b''":
line = str(line)[2:-5] # eliminates b' and \r\n'
print(line) # This works real-time
output.append(line) # this does not
p.stdout.close()
p.wait()
except Exception as e:
print(str(e))
button_run = QPushButton("&Run", self)
button_run.clicked.connect(run)
output = QTextEdit()
output.setPlaceholderText("Text will appear here")
output.setReadOnly(True)
"""
rest of initUI....
"""
if __name__ == '__main__':
app = QApplication(sys.argv)
ui = gui()
sys.exit(app.exec_())
我尝试使用QProcess,但我无法绕过它。
答案 0 :(得分:0)
您应该使用工作线程并通过Qt插槽和信号与您的工作人员通信您的主应用程序。请参阅this example它是用c ++编码的,但有助于理解。
答案 1 :(得分:0)
使用Qt QProcess而不是在线程中使用subprocess
,这会更容易 - 它包含readyRead
信号和readLine
方法之类的内容