Mình đã thử subprocess.Popen
nhưng khi in ra widget theo thời gian thực thì bị crashes.
Đây là code:
process = subprocess.Popen("exe.exe",shell=False,stdout=process.PIPE)
while True:
output = process.stdout.readline()
if process.poll() is not None:
break
if output:
self.textbox.setText(output.strip())
rc = process.poll()