mirror of
https://github.com/titanscouting/tra-analysis.git
synced 2024-11-10 15:04:45 +00:00
73 lines
2.4 KiB
Python
73 lines
2.4 KiB
Python
import firebase_admin
|
|
from firebase_admin import credentials
|
|
from firebase_admin import firestore
|
|
import csv
|
|
import numpy as np
|
|
|
|
# Use a service account
|
|
cred = credentials.Certificate('keys/keytemp.json')
|
|
#add your own key as this is public. email me for details
|
|
firebase_admin.initialize_app(cred)
|
|
|
|
db = firestore.client()
|
|
|
|
teams=db.collection('data').document('team-2022').collection("Central 2019").get()
|
|
full=[]
|
|
tms=[]
|
|
for team in teams:
|
|
data=[]
|
|
tms.append(team.id)
|
|
reports=db.collection('data').document('team-2022').collection("Central 2019").document(team.id).collection("matches").get()
|
|
for report in reports:
|
|
data.append(db.collection('data').document('team-2022').collection("Central 2019").document(team.id).collection("matches").document(report.id).get().to_dict())
|
|
full.append(data)
|
|
|
|
#print(full)
|
|
|
|
quant_keys = []
|
|
|
|
list_teams = ["2022", "16", "2451"]
|
|
|
|
out = []
|
|
temp = []
|
|
var = []
|
|
|
|
for i in range(len(full)):
|
|
for j in range(len(full[i])):
|
|
for key in list(full[i][j].keys()):
|
|
|
|
if "Quantitative" in key:
|
|
quant_keys.append(key)
|
|
if full[i][j].get(key).get('teamDBRef')[5:] in list_teams:
|
|
|
|
var = []
|
|
|
|
for k in range(len(list(full[i][j].get(key).keys()))):
|
|
|
|
individual_keys = list(full[i][j].get(key).keys())
|
|
#print(individual_keys)
|
|
|
|
var.append(full[i][j].get(key).get(individual_keys[k]))
|
|
|
|
temp.append(var)
|
|
|
|
out.append(var)
|
|
|
|
|
|
print(quant_keys)
|
|
print(out)
|
|
|
|
|
|
#for k in range(len(list(full[i][j].get(key).keys()))):
|
|
# ind_keys = list(full[i][j].get(key).keys())
|
|
# print(ind_keys)
|
|
# print(k)
|
|
# print(ind_keys[k])
|
|
# print(full[i][j].get(key).get('teamDBRef')[5:])
|
|
# print(list_teams.index(full[i][j].get(key).get('teamDBRef')[5:]))
|
|
# print(full[i][j].get(key))
|
|
# var[list_teams.index(full[i][j].get(key).get('teamDBRef')[5:])].append( full[i][j].get(key).get(ind_keys[k]) )
|
|
#print(var)
|
|
|
|
#print(quant_keys)
|