SomelliraAppTry / app.py
ilar06's picture
Create app.py
30960a5 verified
raw
history blame
244 Bytes
import streamlit as st
st.title("Candy Label Scanner")
# Embed the HTML file in the Streamlit app
with open("index.html", 'r', encoding='utf-8') as f:
html_string = f.read()
st.components.v1.html(html_string, height=800, scrolling=True)