Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -68,19 +68,19 @@ with st.container():
|
|
68 |
|
69 |
with col1:
|
70 |
st.info("Update Dwain's FantasyLife Weekly Projections")
|
71 |
-
if st.button("Dwain Projection Update (Weekly)", key='
|
72 |
response = requests.post(weekly_dwain_url, headers=headers)
|
73 |
if response.status_code == 200:
|
74 |
st.write("Uploading!")
|
75 |
with col2:
|
76 |
st.info("Update Freedman's FantasyLife Weekly Projections")
|
77 |
-
if st.button("Freedman Projection Update (Weekly)", key='
|
78 |
response = requests.post(weekly_freedman_url, headers=headers)
|
79 |
if response.status_code == 200:
|
80 |
st.write("Uploading!")
|
81 |
with col3:
|
82 |
st.info("Update the Aggregate FantasyLife Weekly Projections")
|
83 |
-
if st.button("Aggregate Projection Update (Weekly)", key='
|
84 |
response = requests.post(weekly_agg_url, headers=headers)
|
85 |
if response.status_code == 200:
|
86 |
st.write("Uploading!")
|
|
|
68 |
|
69 |
with col1:
|
70 |
st.info("Update Dwain's FantasyLife Weekly Projections")
|
71 |
+
if st.button("Dwain Projection Update (Weekly)", key='reset7'):
|
72 |
response = requests.post(weekly_dwain_url, headers=headers)
|
73 |
if response.status_code == 200:
|
74 |
st.write("Uploading!")
|
75 |
with col2:
|
76 |
st.info("Update Freedman's FantasyLife Weekly Projections")
|
77 |
+
if st.button("Freedman Projection Update (Weekly)", key='reset8'):
|
78 |
response = requests.post(weekly_freedman_url, headers=headers)
|
79 |
if response.status_code == 200:
|
80 |
st.write("Uploading!")
|
81 |
with col3:
|
82 |
st.info("Update the Aggregate FantasyLife Weekly Projections")
|
83 |
+
if st.button("Aggregate Projection Update (Weekly)", key='reset9'):
|
84 |
response = requests.post(weekly_agg_url, headers=headers)
|
85 |
if response.status_code == 200:
|
86 |
st.write("Uploading!")
|