video-face-swap / del.py
tonyassi's picture
Upload 96 files
9ae3d29
raw history blame
No virus
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)