DeepFakeAI-V1 / del.py
imspsycho's picture
Initial upload from Google Colab
63658c8 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)