File size: 445 Bytes
df80275 c43798f df80275 c43798f df80275 c43798f df80275 c43798f df80275 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
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,
)
|