-
The |
Beta Was this translation helpful? Give feedback.
Answered by
josh-bone
Sep 1, 2024
Replies: 1 comment
-
If you have your league_id (which be copied from the URL), you can find the user_id for everyone in your league by running: league_users = LeagueAPIClient.get_users_in_league(league_id=league_id)
for user in league_users:
print(user.display_name, '\t', user.user_id) |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
josh-bone
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
If you have your league_id (which be copied from the URL), you can find the user_id for everyone in your league by running: