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...
awacke1
commited on
Jan 3
Commit
f63d47c
·
verified
·
1 Parent(s):
c95b789
Create app.py
Browse files
Files changed (1)
hide
show
app.py
+8
-0
app.py
ADDED
Viewed
@@ -0,0 +1,8 @@
1
+
import streamlit as st
2
+
3
+
st.set_page_config(layout="wide")
4
+
5
+
with open("lunar_lander.html", "r") as f:
6
+
html = f.read()
7
+
8
+
st.components.v1.html(html, height=450)