-
Notifications
You must be signed in to change notification settings - Fork 225
Team Class
Christian Wendt edited this page Sep 28, 2019
·
11 revisions
Check out Player Class!
team_id: int
team_abbrev: str
team_name: str
division_id: str
wins: int
losses: int
points_for: int # total points for through out the season
points_against: int # total points against through out the season
owner: str
streak_type: str # string of either WIN or LOSS
streak_length: int # how long the streak is for streak type
standing: int # standing before playoffs
final_standings: int # final standing at end of season
logo_url: str
roster: List[Player]
# These 3 variables will have the same index and match on those indexes
schedule: List[Team]
scores: List[int]
outcomes: List[str]