File size: 672 Bytes
4ec5ed1
0fa896d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4ec5ed1
 
 
0fa896d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
import gradio as gr
import subprocess

def run_scripts():
    outputs = []
    scripts = ["firstkha.py", "alf.py"]
    for script in scripts:
        try:
            result = subprocess.run(["python", script], check=True, text=True, capture_output=True)
            outputs.append(f"Output of {script}:\n{result.stdout}")
        except subprocess.CalledProcessError as e:
            outputs.append(f"Error running {script}:\n{e.stderr}")
    return "\n\n".join(outputs)

iface = gr.Interface(
    fn=run_scripts,
    inputs=[],
    outputs="text",
    live=True,
    description="Run the scripts firstkha.py and alf.py"
)

if __name__ == "__main__":
    iface.launch()