Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
ahjvdjf33
/
vfs-api-1
like
0
Paused
App
Files
Files
Fetching metadata from the HF Docker repository...
main
vfs-api-1
/
del.py
ahjvdjf33
Upload 104 files
9c2551a
verified
about 2 years ago
raw
Copy download link
history
blame
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
)