Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
MoyAI
/
password-security
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
ierhon
commited on
Jun 11, 2023
Commit
49f0168
·
1 Parent(s):
f30f2c7
Create app.py
Browse files
Files changed (1)
hide
show
app.py
+8
-0
app.py
ADDED
Viewed
@@ -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()