yukiapple323 commited on
Commit
b5c241e
·
verified ·
1 Parent(s): b8fe109

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +10 -0
app.py ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ import streamlit as st
2
+ import streamlit.components.v1 as components
3
+
4
+ st.title("Candy Label Scanner")
5
+
6
+ # Embed the HTML file in the Streamlit app
7
+ with open("index.html", 'r', encoding='utf-8') as f:
8
+ html_string = f.read()
9
+
10
+ components.html(html_string, height=800, scrolling=True)