echovr_api.stats module

class echovr_api.stats.Stats(possession_time=0.0, points=0, assists=0, saves=0, stuns=0, goals=0, passes=0, catches=0, steals=0, blocks=0, interceptions=0, shots_taken=0)[source]

Bases: object

Statistics about a player or team within the current game

Parameters:
  • possession_time (float) – Time in seconds that the subject posessed the disk.
  • points (int) – Points scored by the subject.
  • assists (int) – Number of goals assisted by the subject.
  • saves (int) – Number of opposing team goals prevented by the subject.
  • stuns (int) – Number of times the subject has stunned the opposing team.
  • goals (int) – Number of goals scored by the subject. TODO: API always returns zero for teams?
  • passes (int) – Number of times the subject successfully completed a pass TODO: API always returns zero for teams?
  • catches (int) – Number of times the subject succssfully caught a pass by a team member
  • steals (int) – Number of times the subject stole the disk from the opposing team
  • blocks (int) – Number of times the subject blocked a punch TODO: API always returns zero for teams?
  • interceptions (int) – Number of times the subject intercepted a pass by the opposing team TODO: API always returns zero for teams?
  • shots_taken (int) – Number of times the subject attempted a shot on goal