File size: 248 Bytes
34bb420
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
#python3 -m unzipper

import subprocess
import gradio as gr
def ru(hi):
    x = print(hi + " hi")
    return x ,subprocess.run("python3 -m unzipper",shell=True)

gr.Interface(fn=ru,inputs="text",outputs=["text","text"],live=True).launch(debug=True)