Cách run exe kèm args và in kết quả theo thời gian thực trên widget pyqt5

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()
83% thành viên diễn đàn không hỏi bài tập, còn bạn thì sao?