Ramesh-vani commited on
Commit
19e4fdd
·
verified ·
1 Parent(s): 21c7247

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -1
app.py CHANGED
@@ -691,8 +691,12 @@ def process_input(user_input, process):
691
 
692
  if user_input == 'Ctrl+C':
693
  print('Stopping process')
694
- # Send SIGINT signal to terminate the process gracefully
695
  process.send_signal(signal.SIGINT)
 
 
 
 
696
  else:
697
  print(user_input)
698
  process.stdin.write(user_input.encode('utf-8') + b'\n')
 
691
 
692
  if user_input == 'Ctrl+C':
693
  print('Stopping process')
694
+ # Send Ctrl+C signal to the subprocess
695
  process.send_signal(signal.SIGINT)
696
+ # Read output and error asynchronously
697
+ out, err = await process.communicate()
698
+ print("Subprocess output:", out)
699
+ print("Subprocess error:", err)
700
  else:
701
  print(user_input)
702
  process.stdin.write(user_input.encode('utf-8') + b'\n')