Skip to content

Instantly share code, notes, and snippets.

@asehmi
Created April 13, 2023 11:51
Show Gist options
  • Save asehmi/d6d835737020373540d553d7ad66660d to your computer and use it in GitHub Desktop.
Save asehmi/d6d835737020373540d553d7ad66660d to your computer and use it in GitHub Desktop.
Streamlit URL button
import streamlit as st
from streamlit.components.v1 import html
def open_page(url):
open_script= """
<script type="text/javascript">
window.open('%s', '_blank').focus();
</script>
""" % (url)
html(open_script)
st.button('Open Blog', on_click=open_page, args=('https://sehmiconscious.blogspot.com/',))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment