Spaces:
Running
Running
import streamlit as st | |
from repo_directory import Track_Temperature | |
from repo_directory import button, utils | |
YEAR_SELECTED = st.selectbox( | |
'Select year', | |
(2024,2023, 2022, 2021, 2020, 2019, 2018)) | |
RACE_SELECTED = st.selectbox( | |
'Select Race', | |
utils.get_events(YEAR_SELECTED)) | |
SESSION = st.selectbox( | |
'Select Session', | |
utils.get_sessions(YEAR_SELECTED, RACE_SELECTED)) | |
Track_Temperature.plot(YEAR_SELECTED, RACE_SELECTED, SESSION) |