├── .github └── workflows │ ├── autopep8.yaml │ └── ut.yaml ├── .gitignore ├── .readthedocs.yaml ├── LICENSE ├── MANIFEST.in ├── README.rst ├── docs ├── Makefile ├── authentication.rst ├── conf.py ├── index.rst ├── introduction.rst ├── modules.rst └── yahoo_fantasy_api.rst ├── requirements.txt ├── setup.cfg ├── setup.py └── yahoo_fantasy_api ├── __init__.py ├── game.py ├── league.py ├── oauth2_logger.py ├── scripts ├── yfa_draft_results ├── yfa_init_oauth_env ├── yfa_league └── yfa_team ├── team.py ├── tests ├── accept_trade.xml ├── add_drop_no_faab.xml ├── add_drop_with_faab.xml ├── conftest.py ├── mock_yhandler.py ├── sample.draftresults.396.l.21484.json ├── sample.game_details.json ├── sample.league_settings.388.l.27081.json ├── sample.league_settings.396.l.21484.json ├── sample.league_teams.json ├── sample.matchup.json ├── sample.pending_trade_transaction.json ├── sample.percent_owned.json ├── sample.player_details.Phil.json ├── sample.player_details.blah.json ├── sample.player_details.ids.json ├── sample.player_ownership.json ├── sample.player_stats.370.l.56877.json ├── sample.player_stats.396.l.21484.json ├── sample.player_stats.449.l.75178.json ├── sample.players.freeagents.C.pg.1.json ├── sample.players.freeagents.C.pg.2.json ├── sample.players.freeagents.C.pg.3.json ├── sample.scoreboard.noweek.json ├── sample.scoreboard.week12.json ├── sample.standings.json ├── sample.team_details.json ├── sample.team_roster.json ├── sample.team_roster.travis_hunter.json ├── sample.transactions.json ├── sample.users_leagues.json ├── sample.users_teams.json ├── test_game.py ├── test_league.py ├── test_team.py ├── test_yhandler.py └── trade_proposal.xml ├── utils.py └── yhandler.py /.github/workflows/autopep8.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spilchen/yahoo_fantasy_api/HEAD/.github/workflows/autopep8.yaml -------------------------------------------------------------------------------- /.github/workflows/ut.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spilchen/yahoo_fantasy_api/HEAD/.github/workflows/ut.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spilchen/yahoo_fantasy_api/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spilchen/yahoo_fantasy_api/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spilchen/yahoo_fantasy_api/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spilchen/yahoo_fantasy_api/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spilchen/yahoo_fantasy_api/HEAD/README.rst -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spilchen/yahoo_fantasy_api/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/authentication.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spilchen/yahoo_fantasy_api/HEAD/docs/authentication.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spilchen/yahoo_fantasy_api/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spilchen/yahoo_fantasy_api/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/introduction.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spilchen/yahoo_fantasy_api/HEAD/docs/introduction.rst -------------------------------------------------------------------------------- /docs/modules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spilchen/yahoo_fantasy_api/HEAD/docs/modules.rst -------------------------------------------------------------------------------- /docs/yahoo_fantasy_api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spilchen/yahoo_fantasy_api/HEAD/docs/yahoo_fantasy_api.rst -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spilchen/yahoo_fantasy_api/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spilchen/yahoo_fantasy_api/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spilchen/yahoo_fantasy_api/HEAD/setup.py -------------------------------------------------------------------------------- /yahoo_fantasy_api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spilchen/yahoo_fantasy_api/HEAD/yahoo_fantasy_api/__init__.py -------------------------------------------------------------------------------- /yahoo_fantasy_api/game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spilchen/yahoo_fantasy_api/HEAD/yahoo_fantasy_api/game.py -------------------------------------------------------------------------------- /yahoo_fantasy_api/league.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spilchen/yahoo_fantasy_api/HEAD/yahoo_fantasy_api/league.py -------------------------------------------------------------------------------- /yahoo_fantasy_api/oauth2_logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spilchen/yahoo_fantasy_api/HEAD/yahoo_fantasy_api/oauth2_logger.py -------------------------------------------------------------------------------- /yahoo_fantasy_api/scripts/yfa_draft_results: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spilchen/yahoo_fantasy_api/HEAD/yahoo_fantasy_api/scripts/yfa_draft_results -------------------------------------------------------------------------------- /yahoo_fantasy_api/scripts/yfa_init_oauth_env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spilchen/yahoo_fantasy_api/HEAD/yahoo_fantasy_api/scripts/yfa_init_oauth_env -------------------------------------------------------------------------------- /yahoo_fantasy_api/scripts/yfa_league: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spilchen/yahoo_fantasy_api/HEAD/yahoo_fantasy_api/scripts/yfa_league -------------------------------------------------------------------------------- /yahoo_fantasy_api/scripts/yfa_team: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spilchen/yahoo_fantasy_api/HEAD/yahoo_fantasy_api/scripts/yfa_team -------------------------------------------------------------------------------- /yahoo_fantasy_api/team.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spilchen/yahoo_fantasy_api/HEAD/yahoo_fantasy_api/team.py -------------------------------------------------------------------------------- /yahoo_fantasy_api/tests/accept_trade.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spilchen/yahoo_fantasy_api/HEAD/yahoo_fantasy_api/tests/accept_trade.xml -------------------------------------------------------------------------------- /yahoo_fantasy_api/tests/add_drop_no_faab.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spilchen/yahoo_fantasy_api/HEAD/yahoo_fantasy_api/tests/add_drop_no_faab.xml -------------------------------------------------------------------------------- /yahoo_fantasy_api/tests/add_drop_with_faab.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spilchen/yahoo_fantasy_api/HEAD/yahoo_fantasy_api/tests/add_drop_with_faab.xml -------------------------------------------------------------------------------- /yahoo_fantasy_api/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spilchen/yahoo_fantasy_api/HEAD/yahoo_fantasy_api/tests/conftest.py -------------------------------------------------------------------------------- /yahoo_fantasy_api/tests/mock_yhandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spilchen/yahoo_fantasy_api/HEAD/yahoo_fantasy_api/tests/mock_yhandler.py -------------------------------------------------------------------------------- /yahoo_fantasy_api/tests/sample.draftresults.396.l.21484.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spilchen/yahoo_fantasy_api/HEAD/yahoo_fantasy_api/tests/sample.draftresults.396.l.21484.json -------------------------------------------------------------------------------- /yahoo_fantasy_api/tests/sample.game_details.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spilchen/yahoo_fantasy_api/HEAD/yahoo_fantasy_api/tests/sample.game_details.json -------------------------------------------------------------------------------- /yahoo_fantasy_api/tests/sample.league_settings.388.l.27081.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spilchen/yahoo_fantasy_api/HEAD/yahoo_fantasy_api/tests/sample.league_settings.388.l.27081.json -------------------------------------------------------------------------------- /yahoo_fantasy_api/tests/sample.league_settings.396.l.21484.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spilchen/yahoo_fantasy_api/HEAD/yahoo_fantasy_api/tests/sample.league_settings.396.l.21484.json -------------------------------------------------------------------------------- /yahoo_fantasy_api/tests/sample.league_teams.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spilchen/yahoo_fantasy_api/HEAD/yahoo_fantasy_api/tests/sample.league_teams.json -------------------------------------------------------------------------------- /yahoo_fantasy_api/tests/sample.matchup.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spilchen/yahoo_fantasy_api/HEAD/yahoo_fantasy_api/tests/sample.matchup.json -------------------------------------------------------------------------------- /yahoo_fantasy_api/tests/sample.pending_trade_transaction.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spilchen/yahoo_fantasy_api/HEAD/yahoo_fantasy_api/tests/sample.pending_trade_transaction.json -------------------------------------------------------------------------------- /yahoo_fantasy_api/tests/sample.percent_owned.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spilchen/yahoo_fantasy_api/HEAD/yahoo_fantasy_api/tests/sample.percent_owned.json -------------------------------------------------------------------------------- /yahoo_fantasy_api/tests/sample.player_details.Phil.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spilchen/yahoo_fantasy_api/HEAD/yahoo_fantasy_api/tests/sample.player_details.Phil.json -------------------------------------------------------------------------------- /yahoo_fantasy_api/tests/sample.player_details.blah.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spilchen/yahoo_fantasy_api/HEAD/yahoo_fantasy_api/tests/sample.player_details.blah.json -------------------------------------------------------------------------------- /yahoo_fantasy_api/tests/sample.player_details.ids.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spilchen/yahoo_fantasy_api/HEAD/yahoo_fantasy_api/tests/sample.player_details.ids.json -------------------------------------------------------------------------------- /yahoo_fantasy_api/tests/sample.player_ownership.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spilchen/yahoo_fantasy_api/HEAD/yahoo_fantasy_api/tests/sample.player_ownership.json -------------------------------------------------------------------------------- /yahoo_fantasy_api/tests/sample.player_stats.370.l.56877.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spilchen/yahoo_fantasy_api/HEAD/yahoo_fantasy_api/tests/sample.player_stats.370.l.56877.json -------------------------------------------------------------------------------- /yahoo_fantasy_api/tests/sample.player_stats.396.l.21484.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spilchen/yahoo_fantasy_api/HEAD/yahoo_fantasy_api/tests/sample.player_stats.396.l.21484.json -------------------------------------------------------------------------------- /yahoo_fantasy_api/tests/sample.player_stats.449.l.75178.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spilchen/yahoo_fantasy_api/HEAD/yahoo_fantasy_api/tests/sample.player_stats.449.l.75178.json -------------------------------------------------------------------------------- /yahoo_fantasy_api/tests/sample.players.freeagents.C.pg.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spilchen/yahoo_fantasy_api/HEAD/yahoo_fantasy_api/tests/sample.players.freeagents.C.pg.1.json -------------------------------------------------------------------------------- /yahoo_fantasy_api/tests/sample.players.freeagents.C.pg.2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spilchen/yahoo_fantasy_api/HEAD/yahoo_fantasy_api/tests/sample.players.freeagents.C.pg.2.json -------------------------------------------------------------------------------- /yahoo_fantasy_api/tests/sample.players.freeagents.C.pg.3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spilchen/yahoo_fantasy_api/HEAD/yahoo_fantasy_api/tests/sample.players.freeagents.C.pg.3.json -------------------------------------------------------------------------------- /yahoo_fantasy_api/tests/sample.scoreboard.noweek.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spilchen/yahoo_fantasy_api/HEAD/yahoo_fantasy_api/tests/sample.scoreboard.noweek.json -------------------------------------------------------------------------------- /yahoo_fantasy_api/tests/sample.scoreboard.week12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spilchen/yahoo_fantasy_api/HEAD/yahoo_fantasy_api/tests/sample.scoreboard.week12.json -------------------------------------------------------------------------------- /yahoo_fantasy_api/tests/sample.standings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spilchen/yahoo_fantasy_api/HEAD/yahoo_fantasy_api/tests/sample.standings.json -------------------------------------------------------------------------------- /yahoo_fantasy_api/tests/sample.team_details.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spilchen/yahoo_fantasy_api/HEAD/yahoo_fantasy_api/tests/sample.team_details.json -------------------------------------------------------------------------------- /yahoo_fantasy_api/tests/sample.team_roster.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spilchen/yahoo_fantasy_api/HEAD/yahoo_fantasy_api/tests/sample.team_roster.json -------------------------------------------------------------------------------- /yahoo_fantasy_api/tests/sample.team_roster.travis_hunter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spilchen/yahoo_fantasy_api/HEAD/yahoo_fantasy_api/tests/sample.team_roster.travis_hunter.json -------------------------------------------------------------------------------- /yahoo_fantasy_api/tests/sample.transactions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spilchen/yahoo_fantasy_api/HEAD/yahoo_fantasy_api/tests/sample.transactions.json -------------------------------------------------------------------------------- /yahoo_fantasy_api/tests/sample.users_leagues.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spilchen/yahoo_fantasy_api/HEAD/yahoo_fantasy_api/tests/sample.users_leagues.json -------------------------------------------------------------------------------- /yahoo_fantasy_api/tests/sample.users_teams.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spilchen/yahoo_fantasy_api/HEAD/yahoo_fantasy_api/tests/sample.users_teams.json -------------------------------------------------------------------------------- /yahoo_fantasy_api/tests/test_game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spilchen/yahoo_fantasy_api/HEAD/yahoo_fantasy_api/tests/test_game.py -------------------------------------------------------------------------------- /yahoo_fantasy_api/tests/test_league.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spilchen/yahoo_fantasy_api/HEAD/yahoo_fantasy_api/tests/test_league.py -------------------------------------------------------------------------------- /yahoo_fantasy_api/tests/test_team.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spilchen/yahoo_fantasy_api/HEAD/yahoo_fantasy_api/tests/test_team.py -------------------------------------------------------------------------------- /yahoo_fantasy_api/tests/test_yhandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spilchen/yahoo_fantasy_api/HEAD/yahoo_fantasy_api/tests/test_yhandler.py -------------------------------------------------------------------------------- /yahoo_fantasy_api/tests/trade_proposal.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spilchen/yahoo_fantasy_api/HEAD/yahoo_fantasy_api/tests/trade_proposal.xml -------------------------------------------------------------------------------- /yahoo_fantasy_api/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spilchen/yahoo_fantasy_api/HEAD/yahoo_fantasy_api/utils.py -------------------------------------------------------------------------------- /yahoo_fantasy_api/yhandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spilchen/yahoo_fantasy_api/HEAD/yahoo_fantasy_api/yhandler.py --------------------------------------------------------------------------------