Spaces:
Sleeping
Sleeping
Create app.py
Browse files
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)
|