Pratyush101's picture
Update home.py
c43798f verified
raw
history blame
445 Bytes
import logging
import streamlit as st
logger = logging.getLogger(__name__)
st.title("Interactive Virtual Keyboard Demo")
st.info("👈 Select a demo from the sidebar to begin!")
if __name__ == "__main__":
import os
DEBUG = os.environ.get("DEBUG", "false").lower() in ["true", "yes", "1"]
logging.basicConfig(
format="[%(asctime)s] %(levelname)s %(message)s",
level=logging.DEBUG if DEBUG else logging.INFO,
)