webomurga commited on
Commit
394e645
·
verified ·
1 Parent(s): f3572b6

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -4,7 +4,7 @@ import pickle
4
  model = pickle.load(open("phishing_test.pkl", "rb"))
5
 
6
  st.title("URL Checker")
7
- st.subheader("Just type an URL below to see if it's good!")
8
  url_to_predict = st.text_input("", value="google.com", placeholder="Enter URL")
9
 
10
  prediction = model.predict([url_to_predict])
 
4
  model = pickle.load(open("phishing_test.pkl", "rb"))
5
 
6
  st.title("URL Checker")
7
+ st.subheader("Just type a URL below to see if it's good!")
8
  url_to_predict = st.text_input("", value="google.com", placeholder="Enter URL")
9
 
10
  prediction = model.predict([url_to_predict])