Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
tonyassi
/
video-face-swap
like
565
Running
App
Files
Files
main
video-face-swap
/
del.py
tonyassi
Upload 96 files
9ae3d29
about 1 year 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
)