All Projects → DimaKudosh → Pydfs Lineup Optimizer

DimaKudosh / Pydfs Lineup Optimizer

Licence: mit
Daily Fantasy Sports lineup optimzer for all popular daily fantasy sports sites

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Pydfs Lineup Optimizer

mysportsfeeds-api
Feature requests for the MySportsFeeds Sports Data API.
Stars: ✭ 44 (-82.04%)
Mutual labels:  nba, sports
Sportsipy
A free sports API written for python
Stars: ✭ 229 (-6.53%)
Mutual labels:  nba, sports
sports.py
A simple Python package to gather live sports scores
Stars: ✭ 51 (-79.18%)
Mutual labels:  sports, soccer
scrapeOP
A python package for scraping oddsportal.com
Stars: ✭ 99 (-59.59%)
Mutual labels:  nba, sports
Nba
Node.js client for nba.com API endpoints
Stars: ✭ 637 (+160%)
Mutual labels:  nba, sports
React-NBA-Logos
React components for NBA team logos 🏀
Stars: ✭ 50 (-79.59%)
Mutual labels:  nba, sports
sport-stats
Sport stats UI components
Stars: ✭ 62 (-74.69%)
Mutual labels:  sports, soccer
ARGoal
Get more goals. | Virtual Goals & Goal Distance | App Doctor Hu
Stars: ✭ 14 (-94.29%)
Mutual labels:  sports, soccer
Engsoccerdata
English and European soccer results 1871-2020
Stars: ✭ 615 (+151.02%)
Mutual labels:  sports, soccer
Nba Player Movements
🏀 Visualization of NBA games from raw SportVU data logs
Stars: ✭ 481 (+96.33%)
Mutual labels:  nba, sports
NBA-Machine-Learning-Sports-Betting
NBA sports betting using machine learning
Stars: ✭ 150 (-38.78%)
Mutual labels:  nba, sports
Basketball analytics
Repository which contains various scripts and work with various basketball statistics
Stars: ✭ 88 (-64.08%)
Mutual labels:  nba, sports
Nba.js
A Node.js library for current and historical NBA stats, scores, and data.
Stars: ✭ 339 (+38.37%)
Mutual labels:  nba, sports
Soccergraphr
Soccer Analytics in R using OPTA data
Stars: ✭ 42 (-82.86%)
Mutual labels:  sports, soccer
Awesome Soccer Analytics
⚽️📈 A curated list of awesome resources related to Soccer Analytics.
Stars: ✭ 244 (-0.41%)
Mutual labels:  sports, soccer
Keepformac
keep for mac
Stars: ✭ 147 (-40%)
Mutual labels:  sports
Nba Live
Watch NBA games in the terminal, the content in Chinese only.
Stars: ✭ 181 (-26.12%)
Mutual labels:  nba
Streaming
r/freemediaheckyeah
Stars: ✭ 147 (-40%)
Mutual labels:  sports
Deepplaybyplay
Labelling NBA action using deep learning 🏀
Stars: ✭ 143 (-41.63%)
Mutual labels:  nba
Runalyze
Create your free account at runalyze.com
Stars: ✭ 219 (-10.61%)
Mutual labels:  sports

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 + - - - - - - -
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)
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].