vfs-6300 / del.py
ahjvdjf33's picture
Upload 102 files
2faefa9 verified
raw
history blame contribute delete
186 Bytes
import shutil
import gradio as gr
def delt(text):
txt = text
shutil.rmtree("./output")
return "Removed successfully..."
gr.Interface(delt, "text","text").launch(debug=True)