You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thats a good catch. I checked out the data and for box scores EPSN returns just the stats for that week so you won't have some of the full season stats and information that the normal player would have on the teams roster class.
Sport
Football
Summary
I've noticed that there are some properties in the BoxPlayer class which have no value, but do have the data in the base Player class. For example:
Logs/Data
print(leage.box_scores(4)[0].home_lineup[1].name)
print(leage.box_scores(4)[0].home_lineup[1].total_points)
print(leage.box_scores(4)[0].home_lineup[1].percent_started)
print(leage.teams[3].roster[1].name)
print(leage.teams[3].roster[1].total_points)
print(leage.teams[3].roster[1].percent_started)
The text was updated successfully, but these errors were encountered: