pydfs-lineup-optimizer

Tool for creating optimal lineups for daily fantasy sports


Keywords
dfs, fantasy, sport, lineup, optimize, optimizer, nba, nfl, nhl, mlb, draftkings, fanduel, fantasy-draft, fantasy-football, fantasy-sports, golf, league-of-legends, nascar, pydfs-lineup-optimizer, python, soccer, sports, tennis, wnba, yahoo-fantasy
License
MIT
Install
pip install pydfs-lineup-optimizer==3.6.1

Documentation

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 DraftKings Captain Mode FanDuel Single Game DraftKings Tiers
NFL + + + + + + + +
NBA + + + + - + + +
NHL + + + + - + + +
MLB + + + + - + + +
WNBA + + - - - + - -
Golf + + + + - - - -
Soccer + - - + - + - -
CFL + - - - - - - -
CFB + - - - - - - -
LOL - + - - - + + -
MMA + + - - - - - -
NASCAR + + - - - - - -
Tennis + - - - - - - -
CSGO + - - - - - - -

Documentation

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

Example

Here is an example for evaluating optimal lineup for Yahoo fantasy NBA. It 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)