mirror of
https://github.com/titanscouting/tra-analysis.git
synced 2024-11-10 06:54:44 +00:00
fixed jacob
This commit is contained in:
parent
a2df09dec0
commit
6e5b04b1f5
@ -35,6 +35,7 @@ from analysis import analysis as an
|
||||
from numba import jit
|
||||
import numpy as np
|
||||
import pickle
|
||||
import tba_match_result_request as tba
|
||||
try:
|
||||
from analysis import trueskill as Trueskill
|
||||
except:
|
||||
|
@ -3,8 +3,8 @@ def req_event_matches(eventkey,apikey):
|
||||
headers={'X-TBA-Auth-Key':apikey}
|
||||
r=requests.get('https://www.thebluealliance.com/api/v3/event/'+eventkey+'/matches/simple', headers=headers)
|
||||
return r
|
||||
def sort_through_request(request)
|
||||
if request.status_code = 200
|
||||
def sort_through_request(request):
|
||||
if request.status_code == 200:
|
||||
x=[]
|
||||
for i in sorted(request.json(), key=lambda i: i['actual_time']):
|
||||
x.append([[i['alliances']['red']['team_keys'], i['alliances']['blue']['team_keys']],i['winning_alliance']])
|
||||
|
Loading…
Reference in New Issue
Block a user