imseldrith commited on
Commit
87175db
·
verified ·
1 Parent(s): 20fce6b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +19 -7
app.py CHANGED
@@ -9,26 +9,38 @@ execution_logs = []
9
  MAX_LOG_ENTRIES = 20
10
 
11
  def run_cli_script():
12
- """Executes cli.py and stores logs."""
13
  timestamp = datetime.utcnow().strftime("%Y-%m-%d %H:%M:%S UTC")
14
  log_entry = {'time': timestamp, 'output': '', 'error': ''}
15
-
16
  try:
17
- result = subprocess.run(
18
  ["python", "cli.py"],
19
- capture_output=True,
 
20
  text=True,
21
-
22
  )
23
- log_entry['output'] = result.stdout.strip()
24
- log_entry['error'] = result.stderr.strip()
 
 
 
 
 
 
 
 
 
25
  except Exception as e:
26
  log_entry['error'] = str(e)
 
27
  finally:
28
  execution_logs.append(log_entry)
29
  if len(execution_logs) > MAX_LOG_ENTRIES:
30
  execution_logs.pop(0)
31
 
 
32
  # Start script in a separate thread to avoid blocking Flask
33
  def start_initial_run():
34
  threading.Thread(target=run_cli_script, daemon=True).start()
 
9
  MAX_LOG_ENTRIES = 20
10
 
11
  def run_cli_script():
12
+ """Runs cli.py and streams the output in real-time."""
13
  timestamp = datetime.utcnow().strftime("%Y-%m-%d %H:%M:%S UTC")
14
  log_entry = {'time': timestamp, 'output': '', 'error': ''}
15
+
16
  try:
17
+ process = subprocess.Popen(
18
  ["python", "cli.py"],
19
+ stdout=subprocess.PIPE,
20
+ stderr=subprocess.PIPE,
21
  text=True,
22
+ bufsize=1 # Ensures line buffering (real-time output)
23
  )
24
+
25
+ # Stream stdout in real-time
26
+ for line in process.stdout:
27
+ log_entry['output'] += line
28
+ print(line, end="") # Also print to terminal for debugging
29
+
30
+ # Capture errors in real-time
31
+ for line in process.stderr:
32
+ log_entry['error'] += line
33
+ print(line, end="") # Also print to terminal for debugging
34
+
35
  except Exception as e:
36
  log_entry['error'] = str(e)
37
+
38
  finally:
39
  execution_logs.append(log_entry)
40
  if len(execution_logs) > MAX_LOG_ENTRIES:
41
  execution_logs.pop(0)
42
 
43
+
44
  # Start script in a separate thread to avoid blocking Flask
45
  def start_initial_run():
46
  threading.Thread(target=run_cli_script, daemon=True).start()