aashwinik commited on
Commit
62543c0
1 Parent(s): 4609ad5

Update app.py

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