ilar06 commited on
Commit
30960a5
1 Parent(s): af4d7af

Create app.py

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