Spaces:
Sleeping
Sleeping
File size: 172 Bytes
49f0168 |
1 2 3 4 5 6 7 8 |
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() |