aashwinik's picture
Update app.py
4ea1843 verified
raw history blame
No virus
347 Bytes
import streamlit as st
from Workflow.Scrape import greet, do_it
#UIApp starts here
st.set_page_config(page_title="Bangalore One Day Treks", page_icon=":robot:")
st.header("Bangalore One Day Treks")
text=greet()
st.text(text)
text=do_it()
st.text(text)
st.divider()
st.caption("Source: https://www.bmcadventures.com/collections/one-day-treks")