Spaces:
Running
Running
import streamlit as st | |
from repo_directory import Ideal_Lap | |
from repo_directory import button, utils | |
st.write("Takes about 5-10 minutes") | |
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)) | |
Ideal_Lap.plot(YEAR_SELECTED, RACE_SELECTED, SESSION) |