Getting League Standings #448
Answered
by
mpolowski
dylan-ascent
asked this question in
Ideas
-
Is there a way for me to use the repo to get my FF leagues standings so I can put together automated email news letter around that? If not that would be pretty cool. |
Beta Was this translation helpful? Give feedback.
Answered by
mpolowski
Jun 1, 2023
Replies: 1 comment
-
Yes you should be able to pull them using one of the helper functions found in the wiki here: https://github.com/cwendt94/espn-api/wiki/League-Class def standings() -> List[Team]:
#other helper functions
def top_scorer() -> Team:
def least_scorer() -> Team:
def most_points_against() -> Team:
def top_scored_week() -> Tuple(Team, int):
def least_scored_week() -> Tuple(Team, int):
def get_team_data(team_id: int) -> Team: |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
cwendt94
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Yes you should be able to pull them using one of the helper functions found in the wiki here: https://github.com/cwendt94/espn-api/wiki/League-Class