├── .github ├── FUNDING.md └── workflows │ └── python-publish.yml ├── .gitignore ├── .openapi-generator-ignore ├── .openapi-generator ├── FILES └── VERSION ├── README.md ├── cfbd ├── __init__.py ├── api │ ├── __init__.py │ ├── adjusted_metrics_api.py │ ├── betting_api.py │ ├── coaches_api.py │ ├── conferences_api.py │ ├── draft_api.py │ ├── drives_api.py │ ├── games_api.py │ ├── info_api.py │ ├── metrics_api.py │ ├── players_api.py │ ├── plays_api.py │ ├── rankings_api.py │ ├── ratings_api.py │ ├── recruiting_api.py │ ├── stats_api.py │ ├── teams_api.py │ └── venues_api.py ├── api_client.py ├── api_response.py ├── configuration.py ├── exceptions.py ├── models │ ├── __init__.py │ ├── adjusted_metrics.py │ ├── adjusted_metrics_epa.py │ ├── adjusted_metrics_rushing.py │ ├── adjusted_metrics_success_rate.py │ ├── adjusted_team_metrics.py │ ├── adjusted_team_metrics_epa.py │ ├── adjusted_team_metrics_rushing.py │ ├── adjusted_team_metrics_success_rate.py │ ├── advanced_box_score.py │ ├── advanced_box_score_game_info.py │ ├── advanced_box_score_players.py │ ├── advanced_box_score_teams.py │ ├── advanced_game_stat.py │ ├── advanced_game_stat_defense.py │ ├── advanced_game_stat_offense.py │ ├── advanced_game_stat_offense_passing_downs.py │ ├── advanced_game_stat_offense_passing_plays.py │ ├── advanced_season_stat.py │ ├── advanced_season_stat_defense.py │ ├── advanced_season_stat_offense.py │ ├── advanced_season_stat_offense_field_position.py │ ├── advanced_season_stat_offense_havoc.py │ ├── advanced_season_stat_offense_passing_downs.py │ ├── advanced_season_stat_offense_passing_plays.py │ ├── aggregated_team_recruiting.py │ ├── betting_game.py │ ├── calendar_week.py │ ├── coach.py │ ├── coach_season.py │ ├── conference.py │ ├── conference_sp.py │ ├── conference_sp_defense.py │ ├── conference_sp_offense.py │ ├── division_classification.py │ ├── draft_pick.py │ ├── draft_pick_hometown_info.py │ ├── draft_position.py │ ├── draft_team.py │ ├── drive.py │ ├── field_goal_ep.py │ ├── game.py │ ├── game_havoc_stats.py │ ├── game_havoc_stats_offense.py │ ├── game_line.py │ ├── game_media.py │ ├── game_player_stat_categories.py │ ├── game_player_stat_player.py │ ├── game_player_stat_types.py │ ├── game_player_stats.py │ ├── game_player_stats_team.py │ ├── game_status.py │ ├── game_team_stats.py │ ├── game_team_stats_team.py │ ├── game_team_stats_team_stat.py │ ├── game_weather.py │ ├── kicker_paar.py │ ├── live_game.py │ ├── live_game_drive.py │ ├── live_game_play.py │ ├── live_game_team.py │ ├── matchup.py │ ├── matchup_game.py │ ├── media_type.py │ ├── play.py │ ├── play_clock.py │ ├── play_stat.py │ ├── play_stat_clock.py │ ├── play_stat_type.py │ ├── play_type.py │ ├── play_win_probability.py │ ├── player_game_predicted_points_added.py │ ├── player_game_predicted_points_added_average_ppa.py │ ├── player_game_usage.py │ ├── player_ppa.py │ ├── player_ppa_chart_item.py │ ├── player_search_result.py │ ├── player_season_predicted_points_added.py │ ├── player_season_predicted_points_added_average_ppa.py │ ├── player_stat.py │ ├── player_stats_by_quarter.py │ ├── player_transfer.py │ ├── player_usage.py │ ├── player_usage_usage.py │ ├── player_weighted_epa.py │ ├── poll.py │ ├── poll_rank.py │ ├── poll_week.py │ ├── predicted_points_value.py │ ├── pregame_win_probability.py │ ├── recruit.py │ ├── recruit_classification.py │ ├── recruit_hometown_info.py │ ├── returning_production.py │ ├── roster_player.py │ ├── scoreboard_game.py │ ├── scoreboard_game_betting.py │ ├── scoreboard_game_home_team.py │ ├── scoreboard_game_venue.py │ ├── scoreboard_game_weather.py │ ├── season_type.py │ ├── season_type_db.py │ ├── stats_by_quarter.py │ ├── team.py │ ├── team_ats.py │ ├── team_elo.py │ ├── team_explosiveness.py │ ├── team_field_position.py │ ├── team_fpi.py │ ├── team_fpi_efficiencies.py │ ├── team_fpi_resume_ranks.py │ ├── team_game_predicted_points_added.py │ ├── team_game_predicted_points_added_offense.py │ ├── team_havoc.py │ ├── team_ppa.py │ ├── team_record.py │ ├── team_records.py │ ├── team_recruiting_ranking.py │ ├── team_rushing_stats.py │ ├── team_scoring_opportunities.py │ ├── team_season_predicted_points_added.py │ ├── team_season_predicted_points_added_offense.py │ ├── team_season_predicted_points_added_offense_cumulative.py │ ├── team_sp.py │ ├── team_sp_defense.py │ ├── team_sp_offense.py │ ├── team_sp_special_teams.py │ ├── team_srs.py │ ├── team_stat.py │ ├── team_stat_stat_value.py │ ├── team_success_rates.py │ ├── team_talent.py │ ├── transfer_eligibility.py │ ├── user_info.py │ └── venue.py ├── py.typed └── rest.py ├── docs ├── AdjustedMetrics.md ├── AdjustedMetricsApi.md ├── AdjustedMetricsEpa.md ├── AdjustedMetricsRushing.md ├── AdjustedMetricsSuccessRate.md ├── AdjustedTeamMetrics.md ├── AdjustedTeamMetricsEpa.md ├── AdjustedTeamMetricsRushing.md ├── AdjustedTeamMetricsSuccessRate.md ├── AdvancedBoxScore.md ├── AdvancedBoxScoreGameInfo.md ├── AdvancedBoxScorePlayers.md ├── AdvancedBoxScoreTeams.md ├── AdvancedGameStat.md ├── AdvancedGameStatDefense.md ├── AdvancedGameStatOffense.md ├── AdvancedGameStatOffensePassingDowns.md ├── AdvancedGameStatOffensePassingPlays.md ├── AdvancedSeasonStat.md ├── AdvancedSeasonStatDefense.md ├── AdvancedSeasonStatOffense.md ├── AdvancedSeasonStatOffenseFieldPosition.md ├── AdvancedSeasonStatOffenseHavoc.md ├── AdvancedSeasonStatOffensePassingDowns.md ├── AdvancedSeasonStatOffensePassingPlays.md ├── AggregatedTeamRecruiting.md ├── BettingApi.md ├── BettingGame.md ├── CalendarWeek.md ├── Coach.md ├── CoachSeason.md ├── CoachesApi.md ├── Conference.md ├── ConferenceSP.md ├── ConferenceSPDefense.md ├── ConferenceSPOffense.md ├── ConferencesApi.md ├── DivisionClassification.md ├── DraftApi.md ├── DraftPick.md ├── DraftPickHometownInfo.md ├── DraftPosition.md ├── DraftTeam.md ├── Drive.md ├── DrivesApi.md ├── FieldGoalEP.md ├── Game.md ├── GameHavocStats.md ├── GameHavocStatsOffense.md ├── GameLine.md ├── GameMedia.md ├── GamePlayerStatCategories.md ├── GamePlayerStatPlayer.md ├── GamePlayerStatTypes.md ├── GamePlayerStats.md ├── GamePlayerStatsTeam.md ├── GameStatus.md ├── GameTeamStats.md ├── GameTeamStatsTeam.md ├── GameTeamStatsTeamStat.md ├── GameWeather.md ├── GamesApi.md ├── InfoApi.md ├── KickerPAAR.md ├── LiveGame.md ├── LiveGameDrive.md ├── LiveGamePlay.md ├── LiveGameTeam.md ├── Matchup.md ├── MatchupGame.md ├── MediaType.md ├── MetricsApi.md ├── Play.md ├── PlayClock.md ├── PlayStat.md ├── PlayStatClock.md ├── PlayStatType.md ├── PlayType.md ├── PlayWinProbability.md ├── PlayerGamePredictedPointsAdded.md ├── PlayerGamePredictedPointsAddedAveragePPA.md ├── PlayerGameUsage.md ├── PlayerPPA.md ├── PlayerPPAChartItem.md ├── PlayerSearchResult.md ├── PlayerSeasonPredictedPointsAdded.md ├── PlayerSeasonPredictedPointsAddedAveragePPA.md ├── PlayerStat.md ├── PlayerStatsByQuarter.md ├── PlayerTransfer.md ├── PlayerUsage.md ├── PlayerUsageUsage.md ├── PlayerWeightedEPA.md ├── PlayersApi.md ├── PlaysApi.md ├── Poll.md ├── PollRank.md ├── PollWeek.md ├── PredictedPointsValue.md ├── PregameWinProbability.md ├── RankingsApi.md ├── RatingsApi.md ├── Recruit.md ├── RecruitClassification.md ├── RecruitHometownInfo.md ├── RecruitingApi.md ├── ReturningProduction.md ├── RosterPlayer.md ├── ScoreboardGame.md ├── ScoreboardGameBetting.md ├── ScoreboardGameHomeTeam.md ├── ScoreboardGameVenue.md ├── ScoreboardGameWeather.md ├── SeasonType.md ├── SeasonTypeDB.md ├── StatsApi.md ├── StatsByQuarter.md ├── Team.md ├── TeamATS.md ├── TeamElo.md ├── TeamExplosiveness.md ├── TeamFPI.md ├── TeamFPIEfficiencies.md ├── TeamFPIResumeRanks.md ├── TeamFieldPosition.md ├── TeamGamePredictedPointsAdded.md ├── TeamGamePredictedPointsAddedOffense.md ├── TeamHavoc.md ├── TeamPPA.md ├── TeamRecord.md ├── TeamRecords.md ├── TeamRecruitingRanking.md ├── TeamRushingStats.md ├── TeamSP.md ├── TeamSPDefense.md ├── TeamSPOffense.md ├── TeamSPSpecialTeams.md ├── TeamSRS.md ├── TeamScoringOpportunities.md ├── TeamSeasonPredictedPointsAdded.md ├── TeamSeasonPredictedPointsAddedOffense.md ├── TeamSeasonPredictedPointsAddedOffenseCumulative.md ├── TeamStat.md ├── TeamStatStatValue.md ├── TeamSuccessRates.md ├── TeamTalent.md ├── TeamsApi.md ├── TransferEligibility.md ├── UserInfo.md ├── Venue.md └── VenuesApi.md ├── pyproject.toml ├── requirements.txt ├── setup.cfg ├── setup.py ├── test-requirements.txt ├── test ├── __init__.py ├── test_adjusted_metrics.py ├── test_adjusted_metrics_api.py ├── test_adjusted_metrics_epa.py ├── test_adjusted_metrics_rushing.py ├── test_adjusted_metrics_success_rate.py ├── test_adjusted_team_metrics.py ├── test_adjusted_team_metrics_epa.py ├── test_adjusted_team_metrics_rushing.py ├── test_adjusted_team_metrics_success_rate.py ├── test_advanced_box_score.py ├── test_advanced_box_score_game_info.py ├── test_advanced_box_score_players.py ├── test_advanced_box_score_teams.py ├── test_advanced_game_stat.py ├── test_advanced_game_stat_defense.py ├── test_advanced_game_stat_offense.py ├── test_advanced_game_stat_offense_passing_downs.py ├── test_advanced_game_stat_offense_passing_plays.py ├── test_advanced_season_stat.py ├── test_advanced_season_stat_defense.py ├── test_advanced_season_stat_offense.py ├── test_advanced_season_stat_offense_field_position.py ├── test_advanced_season_stat_offense_havoc.py ├── test_advanced_season_stat_offense_passing_downs.py ├── test_advanced_season_stat_offense_passing_plays.py ├── test_aggregated_team_recruiting.py ├── test_betting_api.py ├── test_betting_game.py ├── test_calendar_week.py ├── test_coach.py ├── test_coach_season.py ├── test_coaches_api.py ├── test_conference.py ├── test_conference_sp.py ├── test_conference_sp_defense.py ├── test_conference_sp_offense.py ├── test_conferences_api.py ├── test_division_classification.py ├── test_draft_api.py ├── test_draft_pick.py ├── test_draft_pick_hometown_info.py ├── test_draft_position.py ├── test_draft_team.py ├── test_drive.py ├── test_drives_api.py ├── test_field_goal_ep.py ├── test_game.py ├── test_game_havoc_stats.py ├── test_game_havoc_stats_offense.py ├── test_game_line.py ├── test_game_media.py ├── test_game_player_stat_categories.py ├── test_game_player_stat_player.py ├── test_game_player_stat_types.py ├── test_game_player_stats.py ├── test_game_player_stats_team.py ├── test_game_status.py ├── test_game_team_stats.py ├── test_game_team_stats_team.py ├── test_game_team_stats_team_stat.py ├── test_game_weather.py ├── test_games_api.py ├── test_info_api.py ├── test_kicker_paar.py ├── test_live_game.py ├── test_live_game_drive.py ├── test_live_game_play.py ├── test_live_game_team.py ├── test_matchup.py ├── test_matchup_game.py ├── test_media_type.py ├── test_metrics_api.py ├── test_play.py ├── test_play_clock.py ├── test_play_stat.py ├── test_play_stat_clock.py ├── test_play_stat_type.py ├── test_play_type.py ├── test_play_win_probability.py ├── test_player_game_predicted_points_added.py ├── test_player_game_predicted_points_added_average_ppa.py ├── test_player_game_usage.py ├── test_player_ppa.py ├── test_player_ppa_chart_item.py ├── test_player_search_result.py ├── test_player_season_predicted_points_added.py ├── test_player_season_predicted_points_added_average_ppa.py ├── test_player_stat.py ├── test_player_stats_by_quarter.py ├── test_player_transfer.py ├── test_player_usage.py ├── test_player_usage_usage.py ├── test_player_weighted_epa.py ├── test_players_api.py ├── test_plays_api.py ├── test_poll.py ├── test_poll_rank.py ├── test_poll_week.py ├── test_predicted_points_value.py ├── test_pregame_win_probability.py ├── test_rankings_api.py ├── test_ratings_api.py ├── test_recruit.py ├── test_recruit_classification.py ├── test_recruit_hometown_info.py ├── test_recruiting_api.py ├── test_returning_production.py ├── test_roster_player.py ├── test_scoreboard_game.py ├── test_scoreboard_game_betting.py ├── test_scoreboard_game_home_team.py ├── test_scoreboard_game_venue.py ├── test_scoreboard_game_weather.py ├── test_season_type.py ├── test_season_type_db.py ├── test_stats_api.py ├── test_stats_by_quarter.py ├── test_team.py ├── test_team_ats.py ├── test_team_elo.py ├── test_team_explosiveness.py ├── test_team_field_position.py ├── test_team_fpi.py ├── test_team_fpi_efficiencies.py ├── test_team_fpi_resume_ranks.py ├── test_team_game_predicted_points_added.py ├── test_team_game_predicted_points_added_offense.py ├── test_team_havoc.py ├── test_team_ppa.py ├── test_team_record.py ├── test_team_records.py ├── test_team_recruiting_ranking.py ├── test_team_rushing_stats.py ├── test_team_scoring_opportunities.py ├── test_team_season_predicted_points_added.py ├── test_team_season_predicted_points_added_offense.py ├── test_team_season_predicted_points_added_offense_cumulative.py ├── test_team_sp.py ├── test_team_sp_defense.py ├── test_team_sp_offense.py ├── test_team_sp_special_teams.py ├── test_team_srs.py ├── test_team_stat.py ├── test_team_stat_stat_value.py ├── test_team_success_rates.py ├── test_team_talent.py ├── test_teams_api.py ├── test_transfer_eligibility.py ├── test_user_info.py ├── test_venue.py └── test_venues_api.py └── tox.ini /.github/FUNDING.md: -------------------------------------------------------------------------------- 1 | patreon: collegefootballdata -------------------------------------------------------------------------------- /.github/workflows/python-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/.github/workflows/python-publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/.gitignore -------------------------------------------------------------------------------- /.openapi-generator-ignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/.openapi-generator-ignore -------------------------------------------------------------------------------- /.openapi-generator/FILES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/.openapi-generator/FILES -------------------------------------------------------------------------------- /.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.12.0 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/README.md -------------------------------------------------------------------------------- /cfbd/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/cfbd/__init__.py -------------------------------------------------------------------------------- /cfbd/api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/cfbd/api/__init__.py -------------------------------------------------------------------------------- /cfbd/api/adjusted_metrics_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/cfbd/api/adjusted_metrics_api.py -------------------------------------------------------------------------------- /cfbd/api/betting_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/cfbd/api/betting_api.py -------------------------------------------------------------------------------- /cfbd/api/coaches_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/cfbd/api/coaches_api.py -------------------------------------------------------------------------------- /cfbd/api/conferences_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/cfbd/api/conferences_api.py -------------------------------------------------------------------------------- /cfbd/api/draft_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/cfbd/api/draft_api.py -------------------------------------------------------------------------------- /cfbd/api/drives_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/cfbd/api/drives_api.py -------------------------------------------------------------------------------- /cfbd/api/games_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/cfbd/api/games_api.py -------------------------------------------------------------------------------- /cfbd/api/info_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/cfbd/api/info_api.py -------------------------------------------------------------------------------- /cfbd/api/metrics_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/cfbd/api/metrics_api.py -------------------------------------------------------------------------------- /cfbd/api/players_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/cfbd/api/players_api.py -------------------------------------------------------------------------------- /cfbd/api/plays_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/cfbd/api/plays_api.py -------------------------------------------------------------------------------- /cfbd/api/rankings_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/cfbd/api/rankings_api.py -------------------------------------------------------------------------------- /cfbd/api/ratings_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/cfbd/api/ratings_api.py -------------------------------------------------------------------------------- /cfbd/api/recruiting_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/cfbd/api/recruiting_api.py -------------------------------------------------------------------------------- /cfbd/api/stats_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/cfbd/api/stats_api.py -------------------------------------------------------------------------------- /cfbd/api/teams_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/cfbd/api/teams_api.py -------------------------------------------------------------------------------- /cfbd/api/venues_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/cfbd/api/venues_api.py -------------------------------------------------------------------------------- /cfbd/api_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/cfbd/api_client.py -------------------------------------------------------------------------------- /cfbd/api_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/cfbd/api_response.py -------------------------------------------------------------------------------- /cfbd/configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/cfbd/configuration.py -------------------------------------------------------------------------------- /cfbd/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/cfbd/exceptions.py -------------------------------------------------------------------------------- /cfbd/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/cfbd/models/__init__.py -------------------------------------------------------------------------------- /cfbd/models/adjusted_metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/cfbd/models/adjusted_metrics.py -------------------------------------------------------------------------------- /cfbd/models/adjusted_metrics_epa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/cfbd/models/adjusted_metrics_epa.py -------------------------------------------------------------------------------- /cfbd/models/adjusted_metrics_rushing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/cfbd/models/adjusted_metrics_rushing.py -------------------------------------------------------------------------------- /cfbd/models/adjusted_metrics_success_rate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/cfbd/models/adjusted_metrics_success_rate.py -------------------------------------------------------------------------------- /cfbd/models/adjusted_team_metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/cfbd/models/adjusted_team_metrics.py -------------------------------------------------------------------------------- /cfbd/models/adjusted_team_metrics_epa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/cfbd/models/adjusted_team_metrics_epa.py -------------------------------------------------------------------------------- /cfbd/models/adjusted_team_metrics_rushing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/cfbd/models/adjusted_team_metrics_rushing.py -------------------------------------------------------------------------------- /cfbd/models/adjusted_team_metrics_success_rate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/cfbd/models/adjusted_team_metrics_success_rate.py -------------------------------------------------------------------------------- /cfbd/models/advanced_box_score.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/cfbd/models/advanced_box_score.py -------------------------------------------------------------------------------- /cfbd/models/advanced_box_score_game_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/cfbd/models/advanced_box_score_game_info.py -------------------------------------------------------------------------------- /cfbd/models/advanced_box_score_players.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/cfbd/models/advanced_box_score_players.py -------------------------------------------------------------------------------- /cfbd/models/advanced_box_score_teams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/cfbd/models/advanced_box_score_teams.py -------------------------------------------------------------------------------- /cfbd/models/advanced_game_stat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/cfbd/models/advanced_game_stat.py -------------------------------------------------------------------------------- /cfbd/models/advanced_game_stat_defense.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/cfbd/models/advanced_game_stat_defense.py -------------------------------------------------------------------------------- /cfbd/models/advanced_game_stat_offense.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/cfbd/models/advanced_game_stat_offense.py -------------------------------------------------------------------------------- /cfbd/models/advanced_game_stat_offense_passing_downs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/cfbd/models/advanced_game_stat_offense_passing_downs.py -------------------------------------------------------------------------------- /cfbd/models/advanced_game_stat_offense_passing_plays.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/cfbd/models/advanced_game_stat_offense_passing_plays.py -------------------------------------------------------------------------------- /cfbd/models/advanced_season_stat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/cfbd/models/advanced_season_stat.py -------------------------------------------------------------------------------- /cfbd/models/advanced_season_stat_defense.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/cfbd/models/advanced_season_stat_defense.py -------------------------------------------------------------------------------- /cfbd/models/advanced_season_stat_offense.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/cfbd/models/advanced_season_stat_offense.py -------------------------------------------------------------------------------- /cfbd/models/advanced_season_stat_offense_field_position.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/cfbd/models/advanced_season_stat_offense_field_position.py -------------------------------------------------------------------------------- /cfbd/models/advanced_season_stat_offense_havoc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/cfbd/models/advanced_season_stat_offense_havoc.py -------------------------------------------------------------------------------- /cfbd/models/advanced_season_stat_offense_passing_downs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/cfbd/models/advanced_season_stat_offense_passing_downs.py -------------------------------------------------------------------------------- /cfbd/models/advanced_season_stat_offense_passing_plays.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/cfbd/models/advanced_season_stat_offense_passing_plays.py -------------------------------------------------------------------------------- /cfbd/models/aggregated_team_recruiting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/cfbd/models/aggregated_team_recruiting.py -------------------------------------------------------------------------------- /cfbd/models/betting_game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/cfbd/models/betting_game.py -------------------------------------------------------------------------------- /cfbd/models/calendar_week.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/cfbd/models/calendar_week.py -------------------------------------------------------------------------------- /cfbd/models/coach.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/cfbd/models/coach.py -------------------------------------------------------------------------------- /cfbd/models/coach_season.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/cfbd/models/coach_season.py -------------------------------------------------------------------------------- /cfbd/models/conference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/cfbd/models/conference.py -------------------------------------------------------------------------------- /cfbd/models/conference_sp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/cfbd/models/conference_sp.py -------------------------------------------------------------------------------- /cfbd/models/conference_sp_defense.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/cfbd/models/conference_sp_defense.py -------------------------------------------------------------------------------- /cfbd/models/conference_sp_offense.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/cfbd/models/conference_sp_offense.py -------------------------------------------------------------------------------- /cfbd/models/division_classification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/cfbd/models/division_classification.py -------------------------------------------------------------------------------- /cfbd/models/draft_pick.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/cfbd/models/draft_pick.py -------------------------------------------------------------------------------- /cfbd/models/draft_pick_hometown_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/cfbd/models/draft_pick_hometown_info.py -------------------------------------------------------------------------------- /cfbd/models/draft_position.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/cfbd/models/draft_position.py -------------------------------------------------------------------------------- /cfbd/models/draft_team.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/cfbd/models/draft_team.py -------------------------------------------------------------------------------- /cfbd/models/drive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/cfbd/models/drive.py -------------------------------------------------------------------------------- /cfbd/models/field_goal_ep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/cfbd/models/field_goal_ep.py -------------------------------------------------------------------------------- /cfbd/models/game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/cfbd/models/game.py -------------------------------------------------------------------------------- /cfbd/models/game_havoc_stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/cfbd/models/game_havoc_stats.py -------------------------------------------------------------------------------- /cfbd/models/game_havoc_stats_offense.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/cfbd/models/game_havoc_stats_offense.py -------------------------------------------------------------------------------- /cfbd/models/game_line.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/cfbd/models/game_line.py -------------------------------------------------------------------------------- /cfbd/models/game_media.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/cfbd/models/game_media.py -------------------------------------------------------------------------------- /cfbd/models/game_player_stat_categories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/cfbd/models/game_player_stat_categories.py -------------------------------------------------------------------------------- /cfbd/models/game_player_stat_player.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/cfbd/models/game_player_stat_player.py -------------------------------------------------------------------------------- /cfbd/models/game_player_stat_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/cfbd/models/game_player_stat_types.py -------------------------------------------------------------------------------- /cfbd/models/game_player_stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/cfbd/models/game_player_stats.py -------------------------------------------------------------------------------- /cfbd/models/game_player_stats_team.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/cfbd/models/game_player_stats_team.py -------------------------------------------------------------------------------- /cfbd/models/game_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/cfbd/models/game_status.py -------------------------------------------------------------------------------- /cfbd/models/game_team_stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/cfbd/models/game_team_stats.py -------------------------------------------------------------------------------- /cfbd/models/game_team_stats_team.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/cfbd/models/game_team_stats_team.py -------------------------------------------------------------------------------- /cfbd/models/game_team_stats_team_stat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/cfbd/models/game_team_stats_team_stat.py -------------------------------------------------------------------------------- /cfbd/models/game_weather.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/cfbd/models/game_weather.py -------------------------------------------------------------------------------- /cfbd/models/kicker_paar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/cfbd/models/kicker_paar.py -------------------------------------------------------------------------------- /cfbd/models/live_game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/cfbd/models/live_game.py -------------------------------------------------------------------------------- /cfbd/models/live_game_drive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/cfbd/models/live_game_drive.py -------------------------------------------------------------------------------- /cfbd/models/live_game_play.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/cfbd/models/live_game_play.py -------------------------------------------------------------------------------- /cfbd/models/live_game_team.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/cfbd/models/live_game_team.py -------------------------------------------------------------------------------- /cfbd/models/matchup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/cfbd/models/matchup.py -------------------------------------------------------------------------------- /cfbd/models/matchup_game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/cfbd/models/matchup_game.py -------------------------------------------------------------------------------- /cfbd/models/media_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/cfbd/models/media_type.py -------------------------------------------------------------------------------- /cfbd/models/play.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/cfbd/models/play.py -------------------------------------------------------------------------------- /cfbd/models/play_clock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/cfbd/models/play_clock.py -------------------------------------------------------------------------------- /cfbd/models/play_stat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/cfbd/models/play_stat.py -------------------------------------------------------------------------------- /cfbd/models/play_stat_clock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/cfbd/models/play_stat_clock.py -------------------------------------------------------------------------------- /cfbd/models/play_stat_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/cfbd/models/play_stat_type.py -------------------------------------------------------------------------------- /cfbd/models/play_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/cfbd/models/play_type.py -------------------------------------------------------------------------------- /cfbd/models/play_win_probability.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/cfbd/models/play_win_probability.py -------------------------------------------------------------------------------- /cfbd/models/player_game_predicted_points_added.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/cfbd/models/player_game_predicted_points_added.py -------------------------------------------------------------------------------- /cfbd/models/player_game_predicted_points_added_average_ppa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/cfbd/models/player_game_predicted_points_added_average_ppa.py -------------------------------------------------------------------------------- /cfbd/models/player_game_usage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/cfbd/models/player_game_usage.py -------------------------------------------------------------------------------- /cfbd/models/player_ppa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/cfbd/models/player_ppa.py -------------------------------------------------------------------------------- /cfbd/models/player_ppa_chart_item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/cfbd/models/player_ppa_chart_item.py -------------------------------------------------------------------------------- /cfbd/models/player_search_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/cfbd/models/player_search_result.py -------------------------------------------------------------------------------- /cfbd/models/player_season_predicted_points_added.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/cfbd/models/player_season_predicted_points_added.py -------------------------------------------------------------------------------- /cfbd/models/player_season_predicted_points_added_average_ppa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/cfbd/models/player_season_predicted_points_added_average_ppa.py -------------------------------------------------------------------------------- /cfbd/models/player_stat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/cfbd/models/player_stat.py -------------------------------------------------------------------------------- /cfbd/models/player_stats_by_quarter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/cfbd/models/player_stats_by_quarter.py -------------------------------------------------------------------------------- /cfbd/models/player_transfer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/cfbd/models/player_transfer.py -------------------------------------------------------------------------------- /cfbd/models/player_usage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/cfbd/models/player_usage.py -------------------------------------------------------------------------------- /cfbd/models/player_usage_usage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/cfbd/models/player_usage_usage.py -------------------------------------------------------------------------------- /cfbd/models/player_weighted_epa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/cfbd/models/player_weighted_epa.py -------------------------------------------------------------------------------- /cfbd/models/poll.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/cfbd/models/poll.py -------------------------------------------------------------------------------- /cfbd/models/poll_rank.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/cfbd/models/poll_rank.py -------------------------------------------------------------------------------- /cfbd/models/poll_week.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/cfbd/models/poll_week.py -------------------------------------------------------------------------------- /cfbd/models/predicted_points_value.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/cfbd/models/predicted_points_value.py -------------------------------------------------------------------------------- /cfbd/models/pregame_win_probability.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/cfbd/models/pregame_win_probability.py -------------------------------------------------------------------------------- /cfbd/models/recruit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/cfbd/models/recruit.py -------------------------------------------------------------------------------- /cfbd/models/recruit_classification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/cfbd/models/recruit_classification.py -------------------------------------------------------------------------------- /cfbd/models/recruit_hometown_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/cfbd/models/recruit_hometown_info.py -------------------------------------------------------------------------------- /cfbd/models/returning_production.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/cfbd/models/returning_production.py -------------------------------------------------------------------------------- /cfbd/models/roster_player.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/cfbd/models/roster_player.py -------------------------------------------------------------------------------- /cfbd/models/scoreboard_game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/cfbd/models/scoreboard_game.py -------------------------------------------------------------------------------- /cfbd/models/scoreboard_game_betting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/cfbd/models/scoreboard_game_betting.py -------------------------------------------------------------------------------- /cfbd/models/scoreboard_game_home_team.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/cfbd/models/scoreboard_game_home_team.py -------------------------------------------------------------------------------- /cfbd/models/scoreboard_game_venue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/cfbd/models/scoreboard_game_venue.py -------------------------------------------------------------------------------- /cfbd/models/scoreboard_game_weather.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/cfbd/models/scoreboard_game_weather.py -------------------------------------------------------------------------------- /cfbd/models/season_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/cfbd/models/season_type.py -------------------------------------------------------------------------------- /cfbd/models/season_type_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/cfbd/models/season_type_db.py -------------------------------------------------------------------------------- /cfbd/models/stats_by_quarter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/cfbd/models/stats_by_quarter.py -------------------------------------------------------------------------------- /cfbd/models/team.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/cfbd/models/team.py -------------------------------------------------------------------------------- /cfbd/models/team_ats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/cfbd/models/team_ats.py -------------------------------------------------------------------------------- /cfbd/models/team_elo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/cfbd/models/team_elo.py -------------------------------------------------------------------------------- /cfbd/models/team_explosiveness.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/cfbd/models/team_explosiveness.py -------------------------------------------------------------------------------- /cfbd/models/team_field_position.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/cfbd/models/team_field_position.py -------------------------------------------------------------------------------- /cfbd/models/team_fpi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/cfbd/models/team_fpi.py -------------------------------------------------------------------------------- /cfbd/models/team_fpi_efficiencies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/cfbd/models/team_fpi_efficiencies.py -------------------------------------------------------------------------------- /cfbd/models/team_fpi_resume_ranks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/cfbd/models/team_fpi_resume_ranks.py -------------------------------------------------------------------------------- /cfbd/models/team_game_predicted_points_added.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/cfbd/models/team_game_predicted_points_added.py -------------------------------------------------------------------------------- /cfbd/models/team_game_predicted_points_added_offense.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/cfbd/models/team_game_predicted_points_added_offense.py -------------------------------------------------------------------------------- /cfbd/models/team_havoc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/cfbd/models/team_havoc.py -------------------------------------------------------------------------------- /cfbd/models/team_ppa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/cfbd/models/team_ppa.py -------------------------------------------------------------------------------- /cfbd/models/team_record.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/cfbd/models/team_record.py -------------------------------------------------------------------------------- /cfbd/models/team_records.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/cfbd/models/team_records.py -------------------------------------------------------------------------------- /cfbd/models/team_recruiting_ranking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/cfbd/models/team_recruiting_ranking.py -------------------------------------------------------------------------------- /cfbd/models/team_rushing_stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/cfbd/models/team_rushing_stats.py -------------------------------------------------------------------------------- /cfbd/models/team_scoring_opportunities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/cfbd/models/team_scoring_opportunities.py -------------------------------------------------------------------------------- /cfbd/models/team_season_predicted_points_added.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/cfbd/models/team_season_predicted_points_added.py -------------------------------------------------------------------------------- /cfbd/models/team_season_predicted_points_added_offense.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/cfbd/models/team_season_predicted_points_added_offense.py -------------------------------------------------------------------------------- /cfbd/models/team_season_predicted_points_added_offense_cumulative.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/cfbd/models/team_season_predicted_points_added_offense_cumulative.py -------------------------------------------------------------------------------- /cfbd/models/team_sp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/cfbd/models/team_sp.py -------------------------------------------------------------------------------- /cfbd/models/team_sp_defense.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/cfbd/models/team_sp_defense.py -------------------------------------------------------------------------------- /cfbd/models/team_sp_offense.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/cfbd/models/team_sp_offense.py -------------------------------------------------------------------------------- /cfbd/models/team_sp_special_teams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/cfbd/models/team_sp_special_teams.py -------------------------------------------------------------------------------- /cfbd/models/team_srs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/cfbd/models/team_srs.py -------------------------------------------------------------------------------- /cfbd/models/team_stat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/cfbd/models/team_stat.py -------------------------------------------------------------------------------- /cfbd/models/team_stat_stat_value.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/cfbd/models/team_stat_stat_value.py -------------------------------------------------------------------------------- /cfbd/models/team_success_rates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/cfbd/models/team_success_rates.py -------------------------------------------------------------------------------- /cfbd/models/team_talent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/cfbd/models/team_talent.py -------------------------------------------------------------------------------- /cfbd/models/transfer_eligibility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/cfbd/models/transfer_eligibility.py -------------------------------------------------------------------------------- /cfbd/models/user_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/cfbd/models/user_info.py -------------------------------------------------------------------------------- /cfbd/models/venue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/cfbd/models/venue.py -------------------------------------------------------------------------------- /cfbd/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cfbd/rest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/cfbd/rest.py -------------------------------------------------------------------------------- /docs/AdjustedMetrics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/docs/AdjustedMetrics.md -------------------------------------------------------------------------------- /docs/AdjustedMetricsApi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/docs/AdjustedMetricsApi.md -------------------------------------------------------------------------------- /docs/AdjustedMetricsEpa.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/docs/AdjustedMetricsEpa.md -------------------------------------------------------------------------------- /docs/AdjustedMetricsRushing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/docs/AdjustedMetricsRushing.md -------------------------------------------------------------------------------- /docs/AdjustedMetricsSuccessRate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/docs/AdjustedMetricsSuccessRate.md -------------------------------------------------------------------------------- /docs/AdjustedTeamMetrics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/docs/AdjustedTeamMetrics.md -------------------------------------------------------------------------------- /docs/AdjustedTeamMetricsEpa.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/docs/AdjustedTeamMetricsEpa.md -------------------------------------------------------------------------------- /docs/AdjustedTeamMetricsRushing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/docs/AdjustedTeamMetricsRushing.md -------------------------------------------------------------------------------- /docs/AdjustedTeamMetricsSuccessRate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/docs/AdjustedTeamMetricsSuccessRate.md -------------------------------------------------------------------------------- /docs/AdvancedBoxScore.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/docs/AdvancedBoxScore.md -------------------------------------------------------------------------------- /docs/AdvancedBoxScoreGameInfo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/docs/AdvancedBoxScoreGameInfo.md -------------------------------------------------------------------------------- /docs/AdvancedBoxScorePlayers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/docs/AdvancedBoxScorePlayers.md -------------------------------------------------------------------------------- /docs/AdvancedBoxScoreTeams.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/docs/AdvancedBoxScoreTeams.md -------------------------------------------------------------------------------- /docs/AdvancedGameStat.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/docs/AdvancedGameStat.md -------------------------------------------------------------------------------- /docs/AdvancedGameStatDefense.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/docs/AdvancedGameStatDefense.md -------------------------------------------------------------------------------- /docs/AdvancedGameStatOffense.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/docs/AdvancedGameStatOffense.md -------------------------------------------------------------------------------- /docs/AdvancedGameStatOffensePassingDowns.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/docs/AdvancedGameStatOffensePassingDowns.md -------------------------------------------------------------------------------- /docs/AdvancedGameStatOffensePassingPlays.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/docs/AdvancedGameStatOffensePassingPlays.md -------------------------------------------------------------------------------- /docs/AdvancedSeasonStat.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/docs/AdvancedSeasonStat.md -------------------------------------------------------------------------------- /docs/AdvancedSeasonStatDefense.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/docs/AdvancedSeasonStatDefense.md -------------------------------------------------------------------------------- /docs/AdvancedSeasonStatOffense.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/docs/AdvancedSeasonStatOffense.md -------------------------------------------------------------------------------- /docs/AdvancedSeasonStatOffenseFieldPosition.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/docs/AdvancedSeasonStatOffenseFieldPosition.md -------------------------------------------------------------------------------- /docs/AdvancedSeasonStatOffenseHavoc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/docs/AdvancedSeasonStatOffenseHavoc.md -------------------------------------------------------------------------------- /docs/AdvancedSeasonStatOffensePassingDowns.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/docs/AdvancedSeasonStatOffensePassingDowns.md -------------------------------------------------------------------------------- /docs/AdvancedSeasonStatOffensePassingPlays.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/docs/AdvancedSeasonStatOffensePassingPlays.md -------------------------------------------------------------------------------- /docs/AggregatedTeamRecruiting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/docs/AggregatedTeamRecruiting.md -------------------------------------------------------------------------------- /docs/BettingApi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/docs/BettingApi.md -------------------------------------------------------------------------------- /docs/BettingGame.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/docs/BettingGame.md -------------------------------------------------------------------------------- /docs/CalendarWeek.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/docs/CalendarWeek.md -------------------------------------------------------------------------------- /docs/Coach.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/docs/Coach.md -------------------------------------------------------------------------------- /docs/CoachSeason.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/docs/CoachSeason.md -------------------------------------------------------------------------------- /docs/CoachesApi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/docs/CoachesApi.md -------------------------------------------------------------------------------- /docs/Conference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/docs/Conference.md -------------------------------------------------------------------------------- /docs/ConferenceSP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/docs/ConferenceSP.md -------------------------------------------------------------------------------- /docs/ConferenceSPDefense.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/docs/ConferenceSPDefense.md -------------------------------------------------------------------------------- /docs/ConferenceSPOffense.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/docs/ConferenceSPOffense.md -------------------------------------------------------------------------------- /docs/ConferencesApi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/docs/ConferencesApi.md -------------------------------------------------------------------------------- /docs/DivisionClassification.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/docs/DivisionClassification.md -------------------------------------------------------------------------------- /docs/DraftApi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/docs/DraftApi.md -------------------------------------------------------------------------------- /docs/DraftPick.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/docs/DraftPick.md -------------------------------------------------------------------------------- /docs/DraftPickHometownInfo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/docs/DraftPickHometownInfo.md -------------------------------------------------------------------------------- /docs/DraftPosition.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/docs/DraftPosition.md -------------------------------------------------------------------------------- /docs/DraftTeam.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/docs/DraftTeam.md -------------------------------------------------------------------------------- /docs/Drive.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/docs/Drive.md -------------------------------------------------------------------------------- /docs/DrivesApi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/docs/DrivesApi.md -------------------------------------------------------------------------------- /docs/FieldGoalEP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/docs/FieldGoalEP.md -------------------------------------------------------------------------------- /docs/Game.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/docs/Game.md -------------------------------------------------------------------------------- /docs/GameHavocStats.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/docs/GameHavocStats.md -------------------------------------------------------------------------------- /docs/GameHavocStatsOffense.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/docs/GameHavocStatsOffense.md -------------------------------------------------------------------------------- /docs/GameLine.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/docs/GameLine.md -------------------------------------------------------------------------------- /docs/GameMedia.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/docs/GameMedia.md -------------------------------------------------------------------------------- /docs/GamePlayerStatCategories.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/docs/GamePlayerStatCategories.md -------------------------------------------------------------------------------- /docs/GamePlayerStatPlayer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/docs/GamePlayerStatPlayer.md -------------------------------------------------------------------------------- /docs/GamePlayerStatTypes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/docs/GamePlayerStatTypes.md -------------------------------------------------------------------------------- /docs/GamePlayerStats.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/docs/GamePlayerStats.md -------------------------------------------------------------------------------- /docs/GamePlayerStatsTeam.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/docs/GamePlayerStatsTeam.md -------------------------------------------------------------------------------- /docs/GameStatus.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/docs/GameStatus.md -------------------------------------------------------------------------------- /docs/GameTeamStats.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/docs/GameTeamStats.md -------------------------------------------------------------------------------- /docs/GameTeamStatsTeam.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/docs/GameTeamStatsTeam.md -------------------------------------------------------------------------------- /docs/GameTeamStatsTeamStat.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/docs/GameTeamStatsTeamStat.md -------------------------------------------------------------------------------- /docs/GameWeather.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/docs/GameWeather.md -------------------------------------------------------------------------------- /docs/GamesApi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/docs/GamesApi.md -------------------------------------------------------------------------------- /docs/InfoApi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/docs/InfoApi.md -------------------------------------------------------------------------------- /docs/KickerPAAR.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/docs/KickerPAAR.md -------------------------------------------------------------------------------- /docs/LiveGame.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/docs/LiveGame.md -------------------------------------------------------------------------------- /docs/LiveGameDrive.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/docs/LiveGameDrive.md -------------------------------------------------------------------------------- /docs/LiveGamePlay.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/docs/LiveGamePlay.md -------------------------------------------------------------------------------- /docs/LiveGameTeam.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/docs/LiveGameTeam.md -------------------------------------------------------------------------------- /docs/Matchup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/docs/Matchup.md -------------------------------------------------------------------------------- /docs/MatchupGame.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/docs/MatchupGame.md -------------------------------------------------------------------------------- /docs/MediaType.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/docs/MediaType.md -------------------------------------------------------------------------------- /docs/MetricsApi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/docs/MetricsApi.md -------------------------------------------------------------------------------- /docs/Play.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/docs/Play.md -------------------------------------------------------------------------------- /docs/PlayClock.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/docs/PlayClock.md -------------------------------------------------------------------------------- /docs/PlayStat.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/docs/PlayStat.md -------------------------------------------------------------------------------- /docs/PlayStatClock.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/docs/PlayStatClock.md -------------------------------------------------------------------------------- /docs/PlayStatType.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/docs/PlayStatType.md -------------------------------------------------------------------------------- /docs/PlayType.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/docs/PlayType.md -------------------------------------------------------------------------------- /docs/PlayWinProbability.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/docs/PlayWinProbability.md -------------------------------------------------------------------------------- /docs/PlayerGamePredictedPointsAdded.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/docs/PlayerGamePredictedPointsAdded.md -------------------------------------------------------------------------------- /docs/PlayerGamePredictedPointsAddedAveragePPA.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/docs/PlayerGamePredictedPointsAddedAveragePPA.md -------------------------------------------------------------------------------- /docs/PlayerGameUsage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/docs/PlayerGameUsage.md -------------------------------------------------------------------------------- /docs/PlayerPPA.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/docs/PlayerPPA.md -------------------------------------------------------------------------------- /docs/PlayerPPAChartItem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/docs/PlayerPPAChartItem.md -------------------------------------------------------------------------------- /docs/PlayerSearchResult.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/docs/PlayerSearchResult.md -------------------------------------------------------------------------------- /docs/PlayerSeasonPredictedPointsAdded.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/docs/PlayerSeasonPredictedPointsAdded.md -------------------------------------------------------------------------------- /docs/PlayerSeasonPredictedPointsAddedAveragePPA.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/docs/PlayerSeasonPredictedPointsAddedAveragePPA.md -------------------------------------------------------------------------------- /docs/PlayerStat.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/docs/PlayerStat.md -------------------------------------------------------------------------------- /docs/PlayerStatsByQuarter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/docs/PlayerStatsByQuarter.md -------------------------------------------------------------------------------- /docs/PlayerTransfer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/docs/PlayerTransfer.md -------------------------------------------------------------------------------- /docs/PlayerUsage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/docs/PlayerUsage.md -------------------------------------------------------------------------------- /docs/PlayerUsageUsage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/docs/PlayerUsageUsage.md -------------------------------------------------------------------------------- /docs/PlayerWeightedEPA.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/docs/PlayerWeightedEPA.md -------------------------------------------------------------------------------- /docs/PlayersApi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/docs/PlayersApi.md -------------------------------------------------------------------------------- /docs/PlaysApi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/docs/PlaysApi.md -------------------------------------------------------------------------------- /docs/Poll.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/docs/Poll.md -------------------------------------------------------------------------------- /docs/PollRank.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/docs/PollRank.md -------------------------------------------------------------------------------- /docs/PollWeek.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/docs/PollWeek.md -------------------------------------------------------------------------------- /docs/PredictedPointsValue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/docs/PredictedPointsValue.md -------------------------------------------------------------------------------- /docs/PregameWinProbability.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/docs/PregameWinProbability.md -------------------------------------------------------------------------------- /docs/RankingsApi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/docs/RankingsApi.md -------------------------------------------------------------------------------- /docs/RatingsApi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/docs/RatingsApi.md -------------------------------------------------------------------------------- /docs/Recruit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/docs/Recruit.md -------------------------------------------------------------------------------- /docs/RecruitClassification.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/docs/RecruitClassification.md -------------------------------------------------------------------------------- /docs/RecruitHometownInfo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/docs/RecruitHometownInfo.md -------------------------------------------------------------------------------- /docs/RecruitingApi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/docs/RecruitingApi.md -------------------------------------------------------------------------------- /docs/ReturningProduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/docs/ReturningProduction.md -------------------------------------------------------------------------------- /docs/RosterPlayer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/docs/RosterPlayer.md -------------------------------------------------------------------------------- /docs/ScoreboardGame.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/docs/ScoreboardGame.md -------------------------------------------------------------------------------- /docs/ScoreboardGameBetting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/docs/ScoreboardGameBetting.md -------------------------------------------------------------------------------- /docs/ScoreboardGameHomeTeam.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/docs/ScoreboardGameHomeTeam.md -------------------------------------------------------------------------------- /docs/ScoreboardGameVenue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/docs/ScoreboardGameVenue.md -------------------------------------------------------------------------------- /docs/ScoreboardGameWeather.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/docs/ScoreboardGameWeather.md -------------------------------------------------------------------------------- /docs/SeasonType.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/docs/SeasonType.md -------------------------------------------------------------------------------- /docs/SeasonTypeDB.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/docs/SeasonTypeDB.md -------------------------------------------------------------------------------- /docs/StatsApi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/docs/StatsApi.md -------------------------------------------------------------------------------- /docs/StatsByQuarter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/docs/StatsByQuarter.md -------------------------------------------------------------------------------- /docs/Team.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/docs/Team.md -------------------------------------------------------------------------------- /docs/TeamATS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/docs/TeamATS.md -------------------------------------------------------------------------------- /docs/TeamElo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/docs/TeamElo.md -------------------------------------------------------------------------------- /docs/TeamExplosiveness.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/docs/TeamExplosiveness.md -------------------------------------------------------------------------------- /docs/TeamFPI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/docs/TeamFPI.md -------------------------------------------------------------------------------- /docs/TeamFPIEfficiencies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/docs/TeamFPIEfficiencies.md -------------------------------------------------------------------------------- /docs/TeamFPIResumeRanks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/docs/TeamFPIResumeRanks.md -------------------------------------------------------------------------------- /docs/TeamFieldPosition.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/docs/TeamFieldPosition.md -------------------------------------------------------------------------------- /docs/TeamGamePredictedPointsAdded.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/docs/TeamGamePredictedPointsAdded.md -------------------------------------------------------------------------------- /docs/TeamGamePredictedPointsAddedOffense.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/docs/TeamGamePredictedPointsAddedOffense.md -------------------------------------------------------------------------------- /docs/TeamHavoc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/docs/TeamHavoc.md -------------------------------------------------------------------------------- /docs/TeamPPA.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/docs/TeamPPA.md -------------------------------------------------------------------------------- /docs/TeamRecord.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/docs/TeamRecord.md -------------------------------------------------------------------------------- /docs/TeamRecords.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/docs/TeamRecords.md -------------------------------------------------------------------------------- /docs/TeamRecruitingRanking.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/docs/TeamRecruitingRanking.md -------------------------------------------------------------------------------- /docs/TeamRushingStats.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/docs/TeamRushingStats.md -------------------------------------------------------------------------------- /docs/TeamSP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/docs/TeamSP.md -------------------------------------------------------------------------------- /docs/TeamSPDefense.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/docs/TeamSPDefense.md -------------------------------------------------------------------------------- /docs/TeamSPOffense.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/docs/TeamSPOffense.md -------------------------------------------------------------------------------- /docs/TeamSPSpecialTeams.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/docs/TeamSPSpecialTeams.md -------------------------------------------------------------------------------- /docs/TeamSRS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/docs/TeamSRS.md -------------------------------------------------------------------------------- /docs/TeamScoringOpportunities.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/docs/TeamScoringOpportunities.md -------------------------------------------------------------------------------- /docs/TeamSeasonPredictedPointsAdded.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/docs/TeamSeasonPredictedPointsAdded.md -------------------------------------------------------------------------------- /docs/TeamSeasonPredictedPointsAddedOffense.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/docs/TeamSeasonPredictedPointsAddedOffense.md -------------------------------------------------------------------------------- /docs/TeamSeasonPredictedPointsAddedOffenseCumulative.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/docs/TeamSeasonPredictedPointsAddedOffenseCumulative.md -------------------------------------------------------------------------------- /docs/TeamStat.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/docs/TeamStat.md -------------------------------------------------------------------------------- /docs/TeamStatStatValue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/docs/TeamStatStatValue.md -------------------------------------------------------------------------------- /docs/TeamSuccessRates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/docs/TeamSuccessRates.md -------------------------------------------------------------------------------- /docs/TeamTalent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/docs/TeamTalent.md -------------------------------------------------------------------------------- /docs/TeamsApi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/docs/TeamsApi.md -------------------------------------------------------------------------------- /docs/TransferEligibility.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/docs/TransferEligibility.md -------------------------------------------------------------------------------- /docs/UserInfo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/docs/UserInfo.md -------------------------------------------------------------------------------- /docs/Venue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/docs/Venue.md -------------------------------------------------------------------------------- /docs/VenuesApi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/docs/VenuesApi.md -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [flake8] 2 | max-line-length=99 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/setup.py -------------------------------------------------------------------------------- /test-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/test-requirements.txt -------------------------------------------------------------------------------- /test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/test_adjusted_metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/test/test_adjusted_metrics.py -------------------------------------------------------------------------------- /test/test_adjusted_metrics_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/test/test_adjusted_metrics_api.py -------------------------------------------------------------------------------- /test/test_adjusted_metrics_epa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/test/test_adjusted_metrics_epa.py -------------------------------------------------------------------------------- /test/test_adjusted_metrics_rushing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/test/test_adjusted_metrics_rushing.py -------------------------------------------------------------------------------- /test/test_adjusted_metrics_success_rate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/test/test_adjusted_metrics_success_rate.py -------------------------------------------------------------------------------- /test/test_adjusted_team_metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/test/test_adjusted_team_metrics.py -------------------------------------------------------------------------------- /test/test_adjusted_team_metrics_epa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/test/test_adjusted_team_metrics_epa.py -------------------------------------------------------------------------------- /test/test_adjusted_team_metrics_rushing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/test/test_adjusted_team_metrics_rushing.py -------------------------------------------------------------------------------- /test/test_adjusted_team_metrics_success_rate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/test/test_adjusted_team_metrics_success_rate.py -------------------------------------------------------------------------------- /test/test_advanced_box_score.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/test/test_advanced_box_score.py -------------------------------------------------------------------------------- /test/test_advanced_box_score_game_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/test/test_advanced_box_score_game_info.py -------------------------------------------------------------------------------- /test/test_advanced_box_score_players.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/test/test_advanced_box_score_players.py -------------------------------------------------------------------------------- /test/test_advanced_box_score_teams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/test/test_advanced_box_score_teams.py -------------------------------------------------------------------------------- /test/test_advanced_game_stat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/test/test_advanced_game_stat.py -------------------------------------------------------------------------------- /test/test_advanced_game_stat_defense.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/test/test_advanced_game_stat_defense.py -------------------------------------------------------------------------------- /test/test_advanced_game_stat_offense.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/test/test_advanced_game_stat_offense.py -------------------------------------------------------------------------------- /test/test_advanced_game_stat_offense_passing_downs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/test/test_advanced_game_stat_offense_passing_downs.py -------------------------------------------------------------------------------- /test/test_advanced_game_stat_offense_passing_plays.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/test/test_advanced_game_stat_offense_passing_plays.py -------------------------------------------------------------------------------- /test/test_advanced_season_stat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/test/test_advanced_season_stat.py -------------------------------------------------------------------------------- /test/test_advanced_season_stat_defense.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/test/test_advanced_season_stat_defense.py -------------------------------------------------------------------------------- /test/test_advanced_season_stat_offense.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/test/test_advanced_season_stat_offense.py -------------------------------------------------------------------------------- /test/test_advanced_season_stat_offense_field_position.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/test/test_advanced_season_stat_offense_field_position.py -------------------------------------------------------------------------------- /test/test_advanced_season_stat_offense_havoc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/test/test_advanced_season_stat_offense_havoc.py -------------------------------------------------------------------------------- /test/test_advanced_season_stat_offense_passing_downs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/test/test_advanced_season_stat_offense_passing_downs.py -------------------------------------------------------------------------------- /test/test_advanced_season_stat_offense_passing_plays.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/test/test_advanced_season_stat_offense_passing_plays.py -------------------------------------------------------------------------------- /test/test_aggregated_team_recruiting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/test/test_aggregated_team_recruiting.py -------------------------------------------------------------------------------- /test/test_betting_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/test/test_betting_api.py -------------------------------------------------------------------------------- /test/test_betting_game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/test/test_betting_game.py -------------------------------------------------------------------------------- /test/test_calendar_week.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/test/test_calendar_week.py -------------------------------------------------------------------------------- /test/test_coach.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/test/test_coach.py -------------------------------------------------------------------------------- /test/test_coach_season.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/test/test_coach_season.py -------------------------------------------------------------------------------- /test/test_coaches_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/test/test_coaches_api.py -------------------------------------------------------------------------------- /test/test_conference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/test/test_conference.py -------------------------------------------------------------------------------- /test/test_conference_sp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/test/test_conference_sp.py -------------------------------------------------------------------------------- /test/test_conference_sp_defense.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/test/test_conference_sp_defense.py -------------------------------------------------------------------------------- /test/test_conference_sp_offense.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/test/test_conference_sp_offense.py -------------------------------------------------------------------------------- /test/test_conferences_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/test/test_conferences_api.py -------------------------------------------------------------------------------- /test/test_division_classification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/test/test_division_classification.py -------------------------------------------------------------------------------- /test/test_draft_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/test/test_draft_api.py -------------------------------------------------------------------------------- /test/test_draft_pick.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/test/test_draft_pick.py -------------------------------------------------------------------------------- /test/test_draft_pick_hometown_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/test/test_draft_pick_hometown_info.py -------------------------------------------------------------------------------- /test/test_draft_position.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/test/test_draft_position.py -------------------------------------------------------------------------------- /test/test_draft_team.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/test/test_draft_team.py -------------------------------------------------------------------------------- /test/test_drive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/test/test_drive.py -------------------------------------------------------------------------------- /test/test_drives_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/test/test_drives_api.py -------------------------------------------------------------------------------- /test/test_field_goal_ep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/test/test_field_goal_ep.py -------------------------------------------------------------------------------- /test/test_game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/test/test_game.py -------------------------------------------------------------------------------- /test/test_game_havoc_stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/test/test_game_havoc_stats.py -------------------------------------------------------------------------------- /test/test_game_havoc_stats_offense.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/test/test_game_havoc_stats_offense.py -------------------------------------------------------------------------------- /test/test_game_line.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/test/test_game_line.py -------------------------------------------------------------------------------- /test/test_game_media.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/test/test_game_media.py -------------------------------------------------------------------------------- /test/test_game_player_stat_categories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/test/test_game_player_stat_categories.py -------------------------------------------------------------------------------- /test/test_game_player_stat_player.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/test/test_game_player_stat_player.py -------------------------------------------------------------------------------- /test/test_game_player_stat_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/test/test_game_player_stat_types.py -------------------------------------------------------------------------------- /test/test_game_player_stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/test/test_game_player_stats.py -------------------------------------------------------------------------------- /test/test_game_player_stats_team.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/test/test_game_player_stats_team.py -------------------------------------------------------------------------------- /test/test_game_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/test/test_game_status.py -------------------------------------------------------------------------------- /test/test_game_team_stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/test/test_game_team_stats.py -------------------------------------------------------------------------------- /test/test_game_team_stats_team.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/test/test_game_team_stats_team.py -------------------------------------------------------------------------------- /test/test_game_team_stats_team_stat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/test/test_game_team_stats_team_stat.py -------------------------------------------------------------------------------- /test/test_game_weather.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/test/test_game_weather.py -------------------------------------------------------------------------------- /test/test_games_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/test/test_games_api.py -------------------------------------------------------------------------------- /test/test_info_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/test/test_info_api.py -------------------------------------------------------------------------------- /test/test_kicker_paar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/test/test_kicker_paar.py -------------------------------------------------------------------------------- /test/test_live_game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/test/test_live_game.py -------------------------------------------------------------------------------- /test/test_live_game_drive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/test/test_live_game_drive.py -------------------------------------------------------------------------------- /test/test_live_game_play.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/test/test_live_game_play.py -------------------------------------------------------------------------------- /test/test_live_game_team.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/test/test_live_game_team.py -------------------------------------------------------------------------------- /test/test_matchup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/test/test_matchup.py -------------------------------------------------------------------------------- /test/test_matchup_game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/test/test_matchup_game.py -------------------------------------------------------------------------------- /test/test_media_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/test/test_media_type.py -------------------------------------------------------------------------------- /test/test_metrics_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/test/test_metrics_api.py -------------------------------------------------------------------------------- /test/test_play.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/test/test_play.py -------------------------------------------------------------------------------- /test/test_play_clock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/test/test_play_clock.py -------------------------------------------------------------------------------- /test/test_play_stat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/test/test_play_stat.py -------------------------------------------------------------------------------- /test/test_play_stat_clock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/test/test_play_stat_clock.py -------------------------------------------------------------------------------- /test/test_play_stat_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/test/test_play_stat_type.py -------------------------------------------------------------------------------- /test/test_play_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/test/test_play_type.py -------------------------------------------------------------------------------- /test/test_play_win_probability.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/test/test_play_win_probability.py -------------------------------------------------------------------------------- /test/test_player_game_predicted_points_added.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/test/test_player_game_predicted_points_added.py -------------------------------------------------------------------------------- /test/test_player_game_predicted_points_added_average_ppa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/test/test_player_game_predicted_points_added_average_ppa.py -------------------------------------------------------------------------------- /test/test_player_game_usage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/test/test_player_game_usage.py -------------------------------------------------------------------------------- /test/test_player_ppa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/test/test_player_ppa.py -------------------------------------------------------------------------------- /test/test_player_ppa_chart_item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/test/test_player_ppa_chart_item.py -------------------------------------------------------------------------------- /test/test_player_search_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/test/test_player_search_result.py -------------------------------------------------------------------------------- /test/test_player_season_predicted_points_added.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/test/test_player_season_predicted_points_added.py -------------------------------------------------------------------------------- /test/test_player_season_predicted_points_added_average_ppa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/test/test_player_season_predicted_points_added_average_ppa.py -------------------------------------------------------------------------------- /test/test_player_stat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/test/test_player_stat.py -------------------------------------------------------------------------------- /test/test_player_stats_by_quarter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/test/test_player_stats_by_quarter.py -------------------------------------------------------------------------------- /test/test_player_transfer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/test/test_player_transfer.py -------------------------------------------------------------------------------- /test/test_player_usage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/test/test_player_usage.py -------------------------------------------------------------------------------- /test/test_player_usage_usage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/test/test_player_usage_usage.py -------------------------------------------------------------------------------- /test/test_player_weighted_epa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/test/test_player_weighted_epa.py -------------------------------------------------------------------------------- /test/test_players_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/test/test_players_api.py -------------------------------------------------------------------------------- /test/test_plays_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/test/test_plays_api.py -------------------------------------------------------------------------------- /test/test_poll.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/test/test_poll.py -------------------------------------------------------------------------------- /test/test_poll_rank.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/test/test_poll_rank.py -------------------------------------------------------------------------------- /test/test_poll_week.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/test/test_poll_week.py -------------------------------------------------------------------------------- /test/test_predicted_points_value.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/test/test_predicted_points_value.py -------------------------------------------------------------------------------- /test/test_pregame_win_probability.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/test/test_pregame_win_probability.py -------------------------------------------------------------------------------- /test/test_rankings_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/test/test_rankings_api.py -------------------------------------------------------------------------------- /test/test_ratings_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/test/test_ratings_api.py -------------------------------------------------------------------------------- /test/test_recruit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/test/test_recruit.py -------------------------------------------------------------------------------- /test/test_recruit_classification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/test/test_recruit_classification.py -------------------------------------------------------------------------------- /test/test_recruit_hometown_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/test/test_recruit_hometown_info.py -------------------------------------------------------------------------------- /test/test_recruiting_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/test/test_recruiting_api.py -------------------------------------------------------------------------------- /test/test_returning_production.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/test/test_returning_production.py -------------------------------------------------------------------------------- /test/test_roster_player.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/test/test_roster_player.py -------------------------------------------------------------------------------- /test/test_scoreboard_game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/test/test_scoreboard_game.py -------------------------------------------------------------------------------- /test/test_scoreboard_game_betting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/test/test_scoreboard_game_betting.py -------------------------------------------------------------------------------- /test/test_scoreboard_game_home_team.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/test/test_scoreboard_game_home_team.py -------------------------------------------------------------------------------- /test/test_scoreboard_game_venue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/test/test_scoreboard_game_venue.py -------------------------------------------------------------------------------- /test/test_scoreboard_game_weather.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/test/test_scoreboard_game_weather.py -------------------------------------------------------------------------------- /test/test_season_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/test/test_season_type.py -------------------------------------------------------------------------------- /test/test_season_type_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/test/test_season_type_db.py -------------------------------------------------------------------------------- /test/test_stats_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/test/test_stats_api.py -------------------------------------------------------------------------------- /test/test_stats_by_quarter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/test/test_stats_by_quarter.py -------------------------------------------------------------------------------- /test/test_team.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/test/test_team.py -------------------------------------------------------------------------------- /test/test_team_ats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/test/test_team_ats.py -------------------------------------------------------------------------------- /test/test_team_elo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/test/test_team_elo.py -------------------------------------------------------------------------------- /test/test_team_explosiveness.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/test/test_team_explosiveness.py -------------------------------------------------------------------------------- /test/test_team_field_position.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/test/test_team_field_position.py -------------------------------------------------------------------------------- /test/test_team_fpi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/test/test_team_fpi.py -------------------------------------------------------------------------------- /test/test_team_fpi_efficiencies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/test/test_team_fpi_efficiencies.py -------------------------------------------------------------------------------- /test/test_team_fpi_resume_ranks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/test/test_team_fpi_resume_ranks.py -------------------------------------------------------------------------------- /test/test_team_game_predicted_points_added.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/test/test_team_game_predicted_points_added.py -------------------------------------------------------------------------------- /test/test_team_game_predicted_points_added_offense.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/test/test_team_game_predicted_points_added_offense.py -------------------------------------------------------------------------------- /test/test_team_havoc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/test/test_team_havoc.py -------------------------------------------------------------------------------- /test/test_team_ppa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/test/test_team_ppa.py -------------------------------------------------------------------------------- /test/test_team_record.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/test/test_team_record.py -------------------------------------------------------------------------------- /test/test_team_records.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/test/test_team_records.py -------------------------------------------------------------------------------- /test/test_team_recruiting_ranking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/test/test_team_recruiting_ranking.py -------------------------------------------------------------------------------- /test/test_team_rushing_stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/test/test_team_rushing_stats.py -------------------------------------------------------------------------------- /test/test_team_scoring_opportunities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/test/test_team_scoring_opportunities.py -------------------------------------------------------------------------------- /test/test_team_season_predicted_points_added.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/test/test_team_season_predicted_points_added.py -------------------------------------------------------------------------------- /test/test_team_season_predicted_points_added_offense.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/test/test_team_season_predicted_points_added_offense.py -------------------------------------------------------------------------------- /test/test_team_season_predicted_points_added_offense_cumulative.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/test/test_team_season_predicted_points_added_offense_cumulative.py -------------------------------------------------------------------------------- /test/test_team_sp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/test/test_team_sp.py -------------------------------------------------------------------------------- /test/test_team_sp_defense.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/test/test_team_sp_defense.py -------------------------------------------------------------------------------- /test/test_team_sp_offense.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/test/test_team_sp_offense.py -------------------------------------------------------------------------------- /test/test_team_sp_special_teams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/test/test_team_sp_special_teams.py -------------------------------------------------------------------------------- /test/test_team_srs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/test/test_team_srs.py -------------------------------------------------------------------------------- /test/test_team_stat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/test/test_team_stat.py -------------------------------------------------------------------------------- /test/test_team_stat_stat_value.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/test/test_team_stat_stat_value.py -------------------------------------------------------------------------------- /test/test_team_success_rates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/test/test_team_success_rates.py -------------------------------------------------------------------------------- /test/test_team_talent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/test/test_team_talent.py -------------------------------------------------------------------------------- /test/test_teams_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/test/test_teams_api.py -------------------------------------------------------------------------------- /test/test_transfer_eligibility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/test/test_transfer_eligibility.py -------------------------------------------------------------------------------- /test/test_user_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/test/test_user_info.py -------------------------------------------------------------------------------- /test/test_venue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/test/test_venue.py -------------------------------------------------------------------------------- /test/test_venues_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/test/test_venues_api.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CFBD/cfbd-python/HEAD/tox.ini --------------------------------------------------------------------------------