Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
Duplicated from
ahjvdjf33/vfs-1
ahjvdjf33
/
vfs-6300
like
0
Running
App
Files
Files
Community
main
vfs-6300
/
del.py
ahjvdjf33
Upload 102 files
2faefa9
verified
9 months ago
raw
Copy download link
history
blame
contribute
delete
Safe
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
)