optibet / app.py
JulienDelavande's picture
Update app.py
c6c0972 verified
raw
history blame contribute delete
288 Bytes
import streamlit as st
FRONTEND_URL = "https://optibet.delavande.fr/"
st.set_page_config(page_title="Wrapper of optibet", layout="wide")
st.markdown(
f"""
<iframe src="{FRONTEND_URL}" width="100%" height="800" frameborder="0"></iframe>
""",
unsafe_allow_html=True,
)