multipage / app.py
mattritchey's picture
Duplicate from mattritchey/multipage2
979b9ef
# -*- coding: utf-8 -*-
"""
Created on Thu Mar 30 08:44:14 2023
@author: mritchey
"""
# streamlit run "C:\Users\mritchey\.spyder-py3\Python Scripts\streamlit projects\multipage_app\Homepage.py"
import streamlit as st
st.set_page_config(
page_title="Multipage App",
# page_icon="👋",
)
st.title("Select A Page in Upper Left")
st.header("Hail")
# url_hail='https://mattritchey-multipage.hf.space/Hail'
# link = f'[Hail]({url_hail})'
# st.markdown(link, unsafe_allow_html=True)
st.header("Hail Plus")
st.header("Wind (High Resolution): RTMA")
st.header("Wind (Low Resolution): ERA")
st.sidebar.success("Select a page above.")
# if "my_input" not in st.session_state:
# st.session_state["my_input"] = ""
# my_input = st.text_input("Input a text here", st.session_state["my_input"])
# submit = st.button("Submit")
# if submit:
# st.session_state["my_input"] = my_input
# st.write("You have entered: ", my_input)