Spaces:
Sleeping
Sleeping
File size: 2,768 Bytes
b81ce47 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 |
import streamlit as st
import requests
st.set_page_config(layout="wide")
dwain_url = "https://www.fantasylife.com/api/projections/v1/nfl/dwain/season/update"
freedman_url = "https://www.fantasylife.com/api/projections/v1/nfl/freedman/season/update"
agg_url = "https://www.fantasylife.com/api/projections/v1/nfl/aggregate/season/update"
weekly_dwain_url = "https://www.fantasylife.com/api/projections/v1/nfl/james/game/update"
weekly_freedman_url = "https://www.fantasylife.com/api/projections/v1/nfl/freedman/game/update"
weekly_agg_url = "https://www.fantasylife.com/api/projections/v1/nfl/aggregate/game/update"
headers = {
'Authorization': 'Bearer 6984da1f-2c81-4140-8206-d018af38533f',
}
with st.container():
col1, col2, col3 = st.columns([3, 3, 3])
with col1:
st.info("Update Dwain's FantasyLife Season Long Projections")
if st.button("Dwain Projection Update (Seasonal)", key='reset1'):
response = requests.post(dwain_url, headers=headers)
if response.status_code == 200:
st.write("Uploading!")
with col2:
st.info("Update Freedman's FantasyLife Season Long Projections")
if st.button("Freedman Projection Update (Seasonal)", key='reset2'):
response = requests.post(freedman_url, headers=headers)
if response.status_code == 200:
st.write("Uploading!")
with col3:
st.info("Update the Aggregate FantasyLife Season Long Projections")
if st.button("Aggregate Projection Update (Seasonal)", key='reset3'):
response = requests.post(agg_url, headers=headers)
if response.status_code == 200:
st.write("Uploading!")
with st.container():
col1, col2, col3 = st.columns([3, 3, 3])
with col1:
st.info("Update Dwain's FantasyLife Season Long Projections")
if st.button("Dwain Projection Update (Weekly)", key='reset4'):
response = requests.post(weekly_dwain_url, headers=headers)
if response.status_code == 200:
st.write("Uploading!")
with col2:
st.info("Update Freedman's FantasyLife Season Long Projections")
if st.button("Freedman Projection Update (Weekly)", key='reset5'):
response = requests.post(weekly_freedman_url, headers=headers)
if response.status_code == 200:
st.write("Uploading!")
with col3:
st.info("Update the Aggregate FantasyLife Season Long Projections")
if st.button("Aggregate Projection Update (Weekly)", key='reset6'):
response = requests.post(weekly_agg_url, headers=headers)
if response.status_code == 200:
st.write("Uploading!") |