File size: 330 Bytes
1fbff03
 
 
 
47ad7ac
1fbff03
 
0ba9c38
 
47ad7ac
 
 
 
1fbff03
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import streamlit as st
from repo_directory import Fan_Ratings
from repo_directory import button

ROUND = st.text_input('Enter Race Number eg. 1 or 1S for sprints')
GRANDPRIX = st.text_input('Enter GP Name eg. ITALIAN')

Fan_Ratings.plot_season_ratings()

try:
    Fan_Ratings.plot_fan_ratings(ROUND, GRANDPRIX)
except:
    pass