Skip to content

Latest commit

 

History

History
42 lines (34 loc) · 2.32 KB

README.md

File metadata and controls

42 lines (34 loc) · 2.32 KB

PYDFS-LINEUP-OPTIMIZER Build StatusCoverage Status

pydfs-lineup-optimizer is a tool for creating optimal lineups for daily fantasy sport.

Installation

To install pydfs-lineup-optimizer, simply run:

$ pip install pydfs-lineup-optimizer

Support

Now it supports following dfs sites:

League DraftKings FanDuel FantasyDraft Yahoo FanBall DraftKing Captain Mode
NFL + + + + + +
NBA + + + + - +
NHL + + + + - -
MLB + + + + - +
WNBA + + - - - +
Golf + - + + - -
Soccer + - - + - +
CFL + - - - - -
LOL - - - - - +
MMA + - - - - -
NASCAR + - - - - -
Tennis + - - - - -

Documentation

Documentation is available at https://pydfs-lineup-optimizer.readthedocs.io/en/latest

Example

Here is a example for evaluating optimal lineup for Yahoo fantasy NBA. It's loads players list from "yahoo-NBA.csv" and select 10 best lineups.

from pydfs_lineup_optimizer import Site, Sport, get_optimizer


optimizer = get_optimizer(Site.YAHOO, Sport.BASKETBALL)
optimizer.load_players_from_csv("yahoo-NBA.csv")
for lineup in optimizer.optimize(10):
    print(lineup)