Skip to content

RobBlumberg/espn_fantasy_matchup_stats

Repository files navigation

ESPN Fantasy Stats Package

Python package to pull fantasy matchup stats using the espn api and predict the outcome of the weekly matchup.

Usage

Authenticating

Your league SWID and ESPN_S2 values can be found by right clicking anywhere within your espn fantasy league, and selecting Inspect. Select Application on the top bar, then click on https://fantasy.espn.com/ under Storage, Cookies. A table will show up, where you should be able to find your SWID and ESPN_S2. For more details, see here.

Once you have these values, export them into your environment.

export LEAGUE_SWID = <your_league_swid>
export LEAGUE_ESPN_S2 = <your_league_espn_s2>
export LEAGUE_ID = <your_league_id>
export LEAGUE_YEAR = 2021 | 2020 | 2019

Instantiate MyTeam object

from espn_fantasy_matchup_stats.fantasy import my_league
from espn_fantasy_matchup_stats.fantasy import MyTeam

# Instatiate MyTeam object
my_team_name = "<your_team_name>"
my_team = MyTeam(my_league, my_team_name)

Useful methods

Below is a brief overview of some useful methods. For comprehensive documentation, see docs.

  • TODO

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Packages

No packages published