Multiple tabs in streamlit

Just took a look at it and the way streamlit sharing urls work, going to a link with an href of “/” doesn’t take you to the current page like it does when running streamlit locally. You’ll need to do something like

STREAMLIT_URL = os.getenv(“STREAMLIT_URL”, “/”)

and make all your tab hrefs look like f"{STREAMLIT_URL}?foo=bar"

then set STREAMLIT_URL as a secret in your streamlit management page. I’ll try to set up a streamlit sharing tabs demo some time