ierhon commited on
Commit
49f0168
·
1 Parent(s): f30f2c7

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -0
app.py ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+ import start
3
+
4
+ def pwcheck(password):
5
+ return str(start.clf(password))
6
+
7
+ iface = gr.Interface(fn=pwcheck, inputs="text", outputs="text")
8
+ iface.launch()