Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
awacke1
/
LunarLanderStreamlitHTMLJS
like
1
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
f4c6091
LunarLanderStreamlitHTMLJS
/
backup1.app.py
awacke1
Rename app.py to backup1.app.py
ce7da08
verified
6 months ago
raw
Copy download link
history
blame
Safe
164 Bytes
import
streamlit
as
st
st.set_page_config(layout=
"wide"
)
with
open
(
"lunar_lander.htm"
,
"r"
)
as
f:
html = f.read()
st.components.v1.html(html, height=
450
)