From c6195a883664f2efbd52532a3baa4e34eee1002b Mon Sep 17 00:00:00 2001 From: jlevine18 Date: Fri, 22 Mar 2019 14:54:55 -0500 Subject: [PATCH 2/3] add req_team_info --- data analysis/tbarequest.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/data analysis/tbarequest.py b/data analysis/tbarequest.py index 15d02925..a5b02ab2 100644 --- a/data analysis/tbarequest.py +++ b/data analysis/tbarequest.py @@ -32,6 +32,12 @@ __all__ = [ import requests #as this code is public, i'm not putting 2022's API key in here. just add it as a var in your script and go +#requests basic team info +def req_team_info(team,apikey): + headers={'X-TBA-Auth-Key':apikey} + r=requests.get('https://www.thebluealliance.com/api/v3/team/frc'+str(team)+'/simple/',headers=headers) + return r + #requests a list of events that a team went to def req_team_events(team,year,apikey): headers={'X-TBA-Auth-Key':apikey} From b798214367e8747b6d71cf6c7e0129fc878b4d82 Mon Sep 17 00:00:00 2001 From: jlevine18 Date: Fri, 22 Mar 2019 15:09:52 -0500 Subject: [PATCH 3/3] Update tbarequest.py --- data analysis/tbarequest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data analysis/tbarequest.py b/data analysis/tbarequest.py index a5b02ab2..b7337a13 100644 --- a/data analysis/tbarequest.py +++ b/data analysis/tbarequest.py @@ -71,7 +71,7 @@ def req_event_elim_alli(event_key, apikey): #requests oprs and dprs def req_event_opr(event_key, apikey): headers={'X-TBA-Auth-Key':apikey} - r=requests.get('https://www.thebluealliance.com/api/v3//event/'+str(event_key)+'/oprs', headers=headers) + r=requests.get('https://www.thebluealliance.com/api/v3/event/'+str(event_key)+'/oprs', headers=headers) return r