ierhon's picture
Create app.py
49f0168
raw
history blame
172 Bytes
import gradio as gr
import start
def pwcheck(password):
return str(start.clf(password))
iface = gr.Interface(fn=pwcheck, inputs="text", outputs="text")
iface.launch()