Spaces:
Sleeping
Sleeping
File size: 374 Bytes
91f00c0 0d937c2 91f00c0 3ba7a88 780c5da 3ba7a88 0d937c2 91f00c0 780c5da |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
import streamlit as st
import home
import poll
import utils
if "UUID" not in st.session_state:
st.session_state["UUID"] = str(utils.generate_uuid())
poll_name = st.query_params.get("poll")
if poll_name:
st.session_state["selected_poll_name"] = poll_name
if "selected_poll_name" not in st.session_state:
home.load()
else :
poll.load()
utils.statistics() |