mirror of
https://github.com/titanscouting/tra-analysis.git
synced 2024-11-10 06:54:44 +00:00
Merge branch 'master' of https://github.com/ltcptgeneral/tr2022-strategy
This commit is contained in:
commit
1b19965449
@ -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}
|
||||
@ -65,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
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user