import streamlit as st import uuid @st.cache_resource def load_polls(): return [] def find_poll(poll_name): for poll in load_polls(): if poll["name"] == poll_name: return poll return None def generate_uuid(): return uuid.uuid4() def get_options(): return [ "Low Pace", "Good Pace", "Fast Pace", "Have Question", "Missed a Point", "Need a brake", ]