awacke1 commited on
Commit
f63d47c
·
verified ·
1 Parent(s): c95b789

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -0
app.py ADDED
@@ -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)