AkashKhamkar commited on
Commit
58c9a2c
1 Parent(s): 216c730

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -2
app.py CHANGED
@@ -47,8 +47,9 @@ def main():
47
  query = st.text_input('Enter your job query here ! ')
48
  if (st.button("Search", on_click=callback) and query) :
49
  with st.spinner('Fetching the best jobs for you!...'):
50
- time.sleep(10)
51
- result = jobsearch(query, df)
 
52
  st.success('NinjaBot : Here are a few suggestions')
53
  #st.write(f"This is the query : {query}")
54
  st.write(result)
 
47
  query = st.text_input('Enter your job query here ! ')
48
  if (st.button("Search", on_click=callback) and query) :
49
  with st.spinner('Fetching the best jobs for you!...'):
50
+ #time.sleep(10)
51
+ result = jobsearch(query, df)
52
+ #result = jobsearch(query, df)
53
  st.success('NinjaBot : Here are a few suggestions')
54
  #st.write(f"This is the query : {query}")
55
  st.write(result)