File size: 185 Bytes
49f0168
 
 
 
562aab0
49f0168
 
 
1
2
3
4
5
6
7
8
import gradio as gr
import start

def pwcheck(password):
    return str(float(start.clf(password)[0][0]))

iface = gr.Interface(fn=pwcheck, inputs="text", outputs="text")
iface.launch()