aashwinik commited on
Commit
1eb4c22
1 Parent(s): c5000c6

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -5
app.py CHANGED
@@ -1,14 +1,11 @@
1
  import streamlit as st
2
- from Workflow.Scrape import greet, do_it
3
 
4
  #UIApp starts here
5
  st.set_page_config(page_title="Bangalore One Day Treks", page_icon=":robot:")
6
  st.header("Bangalore One Day Treks")
7
 
8
- text=greet()
9
- st.text(text)
10
- text=do_it()
11
- st.text(text)
12
 
13
  st.divider()
14
  st.caption("Source: https://www.bmcadventures.com/collections/one-day-treks")
 
1
  import streamlit as st
2
+ from Workflow.Scrape import display_data
3
 
4
  #UIApp starts here
5
  st.set_page_config(page_title="Bangalore One Day Treks", page_icon=":robot:")
6
  st.header("Bangalore One Day Treks")
7
 
8
+ display_data()
 
 
 
9
 
10
  st.divider()
11
  st.caption("Source: https://www.bmcadventures.com/collections/one-day-treks")