Replies: 2 comments 7 replies
-
Probably wouldn't be too hard - I haven't looked at the API response but if auction value is in there then it'd be pretty trivial to add it. Would probably be a pretty easy PR if you want to take a crack at it @Ace7866 |
Beta Was this translation helpful? Give feedback.
4 replies
-
@Ace7866 I think you're in luck! The auction amount appears to be on the draft result object under the c = Context()
lg = c.get_leagues('mlb', 2020)[0]
for result in lg.draft_results():
print(result.player, result.cost) If your league was not an auction league you'll see an AttributeError if you try to access cost. |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
How difficult would it be to add an additional column to the CLI draft dump listing the $ amount paid for each draft pick for auction draft leagues?
Beta Was this translation helpful? Give feedback.
All reactions