unzip / app.py
imseldrith's picture
Create app.py
34bb420
raw
history blame contribute delete
248 Bytes
#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)