Jon Solow commited on
Commit
6b0436a
·
1 Parent(s): ac8c5cd

Add practice reports page

Browse files
Files changed (1) hide show
  1. src/pages/4_PracticeReports.py +60 -0
src/pages/4_PracticeReports.py ADDED
@@ -0,0 +1,60 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import streamlit as st
2
+
3
+ from config import DEFAULT_ICON
4
+ from login_component import get_authorization_button
5
+
6
+ from queries.nfl_teams.practice_reports import scrape_all_team_injury_report
7
+
8
+
9
+ @st.cache_data(ttl=60 * 60 * 24)
10
+ def load_data():
11
+ # Merge ADP
12
+ data = scrape_all_team_injury_report()
13
+ teams_list = list(data.Team.unique())
14
+ position_list = list(data.Position.unique())
15
+ status_list = list(data.game_status.unique())
16
+ last_practice_day_list = list(data["Last Practice Day"].unique())
17
+ return data, teams_list, position_list, status_list, last_practice_day_list
18
+
19
+
20
+ def get_page():
21
+ page_title = "Team Practice Reports"
22
+ st.set_page_config(page_title=page_title, page_icon=DEFAULT_ICON, layout="wide")
23
+ get_authorization_button()
24
+ st.title(page_title)
25
+ data, teams_list, position_list, status_list, last_practice_day_list = load_data()
26
+
27
+ teams_selected = st.multiselect("Team:", teams_list, placeholder="Select a team to filter") or teams_list
28
+ positions_selected = (
29
+ st.multiselect("Position:", position_list, placeholder="Select a position to filter") or position_list
30
+ )
31
+ status_selected = (
32
+ st.multiselect("Game Status:", status_list, placeholder="Select a game status to filter") or status_list
33
+ )
34
+ last_practice_day_selected = (
35
+ st.multiselect(
36
+ "Last Practice Day:", last_practice_day_list, placeholder="Select a day of last team practice to filter"
37
+ )
38
+ or last_practice_day_list
39
+ )
40
+
41
+ with st.container():
42
+ filtered_data = data[
43
+ (
44
+ data.Team.isin(teams_selected)
45
+ & data.Position.isin(positions_selected)
46
+ & data.game_status.isin(status_selected)
47
+ & data["Last Practice Day"].isin(last_practice_day_selected)
48
+ )
49
+ ]
50
+ st.dataframe(
51
+ filtered_data,
52
+ hide_index=True,
53
+ height=35 * (len(filtered_data) + 1) + 12,
54
+ use_container_width=False,
55
+ column_config={},
56
+ )
57
+
58
+
59
+ if __name__ == "__main__":
60
+ get_page()