Spaces:
Running
Running
James McCool
commited on
Commit
·
cf5e7cf
1
Parent(s):
a245a96
Enhance app.py: Initialize DK and FD lineups. Added calls to init_DK_lineups and init_FD_lineups functions to fetch lineup data for DraftKings and FanDuel, improving data preparation for subsequent processing.
Browse files
app.py
CHANGED
@@ -93,6 +93,8 @@ def convert_df(array):
|
|
93 |
return array.to_csv().encode('utf-8')
|
94 |
|
95 |
roo_data, timestamp = init_baselines()
|
|
|
|
|
96 |
hold_display = roo_data
|
97 |
lineup_display = []
|
98 |
check_list = []
|
|
|
93 |
return array.to_csv().encode('utf-8')
|
94 |
|
95 |
roo_data, timestamp = init_baselines()
|
96 |
+
dk_lineups = init_DK_lineups()
|
97 |
+
fd_lineups = init_FD_lineups()
|
98 |
hold_display = roo_data
|
99 |
lineup_display = []
|
100 |
check_list = []
|