sqy-harshil commited on
Commit
c4cfc70
·
1 Parent(s): a1c9963

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -5
app.py CHANGED
@@ -9,16 +9,14 @@ st.set_page_config(layout="wide")
9
 
10
  st.title("FuzzyWuzzy")
11
 
12
- st.caption("A logic that returns the nearest queries from a list of Names")
13
-
14
-
15
- value = st_keyup(label="Search for a builder from the Database", placeholder="Search for a developer from the database below", key="0")
16
  if not value == "":
17
  st.markdown(" ### You're probably looking for:")
18
  st.markdown(find_best_match(value))
19
 
20
 
21
- with st.expander(label="**View Database**"):
22
  c1, c2, c3, c4, c5 = st.columns(5)
23
 
24
  with c1:
 
9
 
10
  st.title("FuzzyWuzzy")
11
 
12
+ st.markdown(" ### Search for a builder from the database")
13
+ value = st_keyup(label="Enter a builder name:", key="0", placeholder="Search for a builder from the Database", label_visibility="collapsed")
 
 
14
  if not value == "":
15
  st.markdown(" ### You're probably looking for:")
16
  st.markdown(find_best_match(value))
17
 
18
 
19
+ with st.expander(label="**View Database**", expanded=True):
20
  c1, c2, c3, c4, c5 = st.columns(5)
21
 
22
  with c1: