├── .github ├── pull_request_template.md └── workflows │ └── main.yml ├── .gitignore ├── .pre-commit-config.yaml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── docs ├── 1. Player Game Logs.ipynb ├── 2. Get Team Games for Specific Period.ipynb ├── Enriching Shooting Data.ipynb ├── GetMatchResults.ipynb ├── GetPlayerStatsPerGame.ipynb ├── Visualizing NBA Shots with py-Goldsberry.ipynb ├── dev │ ├── API_STATUS.md │ ├── ARCHITECTURE.md │ ├── CONTRIBUTING.md │ ├── DECISIONS.md │ ├── ENDPOINT_ROADMAP.md │ ├── IMPLEMENTATION_GUIDE.md │ ├── MIGRATION.md │ ├── PATTERNS.md │ ├── PROJECT_PLAN.md │ └── TESTING.md ├── index.ipynb └── tprendergast.ipynb ├── examples └── basic_usage.py ├── goldsberry_legacy ├── __init__.py ├── _apifunctions.py ├── apiconvertor.py ├── apiparams.py ├── draft │ ├── _Draft.py │ ├── _Draft2.py │ ├── __init__.py │ └── draft.py ├── game │ ├── _Game.py │ ├── _Game2.py │ ├── __init__.py │ └── game.py ├── league │ ├── _League.py │ ├── _League2.py │ ├── __init__.py │ └── league.py ├── masterclass.py ├── player │ ├── _Player.py │ ├── _Player2.py │ ├── __init__.py │ └── player.py ├── playtype │ ├── _PlayType.py │ ├── _PlayType2.py │ └── __init__.py ├── sportvu │ ├── _SportVu.py │ ├── _SportVu2.py │ ├── __init__.py │ └── sportvu.py └── team │ ├── _Team.py │ ├── _Team2.py │ └── __init__.py ├── pyproject.toml ├── src └── goldsberry │ ├── __init__.py │ ├── client │ ├── __init__.py │ ├── base.py │ └── exceptions.py │ ├── endpoints │ ├── __init__.py │ ├── game │ │ ├── __init__.py │ │ ├── boxscore_advanced.py │ │ └── boxscore_traditional.py │ ├── league │ │ ├── __init__.py │ │ ├── player_stats.py │ │ └── team_stats.py │ ├── player │ │ ├── __init__.py │ │ ├── career_stats.py │ │ ├── game_logs.py │ │ └── player_list.py │ └── team │ │ ├── __init__.py │ │ ├── game_logs.py │ │ ├── roster.py │ │ └── season_stats.py │ ├── enums │ ├── __init__.py │ └── common.py │ └── models │ ├── __init__.py │ ├── base.py │ ├── game │ ├── __init__.py │ ├── boxscore_advanced.py │ └── boxscore_traditional.py │ ├── league │ ├── __init__.py │ ├── player_stats.py │ └── team_stats.py │ ├── player │ ├── __init__.py │ ├── career_stats.py │ ├── game_logs.py │ └── player_list.py │ └── team │ ├── __init__.py │ ├── game_logs.py │ ├── roster.py │ └── season_stats.py ├── tests ├── __init__.py ├── conftest.py ├── fixtures │ ├── game │ │ ├── boxscore_advanced_response.json │ │ └── boxscore_traditional_response.json │ ├── league │ │ ├── player_stats_response.json │ │ └── team_stats_response.json │ ├── player │ │ ├── career_stats_response.json │ │ ├── game_logs_response.json │ │ └── player_list_response.json │ └── team │ │ ├── game_logs_response.json │ │ ├── roster_response.json │ │ └── season_stats_response.json └── unit │ ├── endpoints │ ├── game │ │ ├── __init__.py │ │ ├── test_boxscore_advanced.py │ │ └── test_boxscore_traditional.py │ ├── league │ │ ├── test_player_stats.py │ │ └── test_team_stats.py │ └── team │ │ ├── __init__.py │ │ ├── test_game_logs.py │ │ ├── test_roster.py │ │ └── test_season_stats.py │ ├── test_career_stats.py │ ├── test_game_logs.py │ └── test_player_list.py ├── tox.ini └── uv.lock /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradleyfay/py-Goldsberry/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradleyfay/py-Goldsberry/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradleyfay/py-Goldsberry/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradleyfay/py-Goldsberry/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradleyfay/py-Goldsberry/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradleyfay/py-Goldsberry/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradleyfay/py-Goldsberry/HEAD/README.md -------------------------------------------------------------------------------- /docs/1. Player Game Logs.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradleyfay/py-Goldsberry/HEAD/docs/1. Player Game Logs.ipynb -------------------------------------------------------------------------------- /docs/2. Get Team Games for Specific Period.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradleyfay/py-Goldsberry/HEAD/docs/2. Get Team Games for Specific Period.ipynb -------------------------------------------------------------------------------- /docs/Enriching Shooting Data.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradleyfay/py-Goldsberry/HEAD/docs/Enriching Shooting Data.ipynb -------------------------------------------------------------------------------- /docs/GetMatchResults.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradleyfay/py-Goldsberry/HEAD/docs/GetMatchResults.ipynb -------------------------------------------------------------------------------- /docs/GetPlayerStatsPerGame.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradleyfay/py-Goldsberry/HEAD/docs/GetPlayerStatsPerGame.ipynb -------------------------------------------------------------------------------- /docs/Visualizing NBA Shots with py-Goldsberry.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradleyfay/py-Goldsberry/HEAD/docs/Visualizing NBA Shots with py-Goldsberry.ipynb -------------------------------------------------------------------------------- /docs/dev/API_STATUS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradleyfay/py-Goldsberry/HEAD/docs/dev/API_STATUS.md -------------------------------------------------------------------------------- /docs/dev/ARCHITECTURE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradleyfay/py-Goldsberry/HEAD/docs/dev/ARCHITECTURE.md -------------------------------------------------------------------------------- /docs/dev/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradleyfay/py-Goldsberry/HEAD/docs/dev/CONTRIBUTING.md -------------------------------------------------------------------------------- /docs/dev/DECISIONS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradleyfay/py-Goldsberry/HEAD/docs/dev/DECISIONS.md -------------------------------------------------------------------------------- /docs/dev/ENDPOINT_ROADMAP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradleyfay/py-Goldsberry/HEAD/docs/dev/ENDPOINT_ROADMAP.md -------------------------------------------------------------------------------- /docs/dev/IMPLEMENTATION_GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradleyfay/py-Goldsberry/HEAD/docs/dev/IMPLEMENTATION_GUIDE.md -------------------------------------------------------------------------------- /docs/dev/MIGRATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradleyfay/py-Goldsberry/HEAD/docs/dev/MIGRATION.md -------------------------------------------------------------------------------- /docs/dev/PATTERNS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradleyfay/py-Goldsberry/HEAD/docs/dev/PATTERNS.md -------------------------------------------------------------------------------- /docs/dev/PROJECT_PLAN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradleyfay/py-Goldsberry/HEAD/docs/dev/PROJECT_PLAN.md -------------------------------------------------------------------------------- /docs/dev/TESTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradleyfay/py-Goldsberry/HEAD/docs/dev/TESTING.md -------------------------------------------------------------------------------- /docs/index.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradleyfay/py-Goldsberry/HEAD/docs/index.ipynb -------------------------------------------------------------------------------- /docs/tprendergast.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradleyfay/py-Goldsberry/HEAD/docs/tprendergast.ipynb -------------------------------------------------------------------------------- /examples/basic_usage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradleyfay/py-Goldsberry/HEAD/examples/basic_usage.py -------------------------------------------------------------------------------- /goldsberry_legacy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradleyfay/py-Goldsberry/HEAD/goldsberry_legacy/__init__.py -------------------------------------------------------------------------------- /goldsberry_legacy/_apifunctions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradleyfay/py-Goldsberry/HEAD/goldsberry_legacy/_apifunctions.py -------------------------------------------------------------------------------- /goldsberry_legacy/apiconvertor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradleyfay/py-Goldsberry/HEAD/goldsberry_legacy/apiconvertor.py -------------------------------------------------------------------------------- /goldsberry_legacy/apiparams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradleyfay/py-Goldsberry/HEAD/goldsberry_legacy/apiparams.py -------------------------------------------------------------------------------- /goldsberry_legacy/draft/_Draft.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradleyfay/py-Goldsberry/HEAD/goldsberry_legacy/draft/_Draft.py -------------------------------------------------------------------------------- /goldsberry_legacy/draft/_Draft2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradleyfay/py-Goldsberry/HEAD/goldsberry_legacy/draft/_Draft2.py -------------------------------------------------------------------------------- /goldsberry_legacy/draft/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradleyfay/py-Goldsberry/HEAD/goldsberry_legacy/draft/__init__.py -------------------------------------------------------------------------------- /goldsberry_legacy/draft/draft.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradleyfay/py-Goldsberry/HEAD/goldsberry_legacy/draft/draft.py -------------------------------------------------------------------------------- /goldsberry_legacy/game/_Game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradleyfay/py-Goldsberry/HEAD/goldsberry_legacy/game/_Game.py -------------------------------------------------------------------------------- /goldsberry_legacy/game/_Game2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradleyfay/py-Goldsberry/HEAD/goldsberry_legacy/game/_Game2.py -------------------------------------------------------------------------------- /goldsberry_legacy/game/__init__.py: -------------------------------------------------------------------------------- 1 | from goldsberry.game._Game2 import * 2 | -------------------------------------------------------------------------------- /goldsberry_legacy/game/game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradleyfay/py-Goldsberry/HEAD/goldsberry_legacy/game/game.py -------------------------------------------------------------------------------- /goldsberry_legacy/league/_League.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradleyfay/py-Goldsberry/HEAD/goldsberry_legacy/league/_League.py -------------------------------------------------------------------------------- /goldsberry_legacy/league/_League2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradleyfay/py-Goldsberry/HEAD/goldsberry_legacy/league/_League2.py -------------------------------------------------------------------------------- /goldsberry_legacy/league/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradleyfay/py-Goldsberry/HEAD/goldsberry_legacy/league/__init__.py -------------------------------------------------------------------------------- /goldsberry_legacy/league/league.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradleyfay/py-Goldsberry/HEAD/goldsberry_legacy/league/league.py -------------------------------------------------------------------------------- /goldsberry_legacy/masterclass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradleyfay/py-Goldsberry/HEAD/goldsberry_legacy/masterclass.py -------------------------------------------------------------------------------- /goldsberry_legacy/player/_Player.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradleyfay/py-Goldsberry/HEAD/goldsberry_legacy/player/_Player.py -------------------------------------------------------------------------------- /goldsberry_legacy/player/_Player2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradleyfay/py-Goldsberry/HEAD/goldsberry_legacy/player/_Player2.py -------------------------------------------------------------------------------- /goldsberry_legacy/player/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradleyfay/py-Goldsberry/HEAD/goldsberry_legacy/player/__init__.py -------------------------------------------------------------------------------- /goldsberry_legacy/player/player.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradleyfay/py-Goldsberry/HEAD/goldsberry_legacy/player/player.py -------------------------------------------------------------------------------- /goldsberry_legacy/playtype/_PlayType.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradleyfay/py-Goldsberry/HEAD/goldsberry_legacy/playtype/_PlayType.py -------------------------------------------------------------------------------- /goldsberry_legacy/playtype/_PlayType2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradleyfay/py-Goldsberry/HEAD/goldsberry_legacy/playtype/_PlayType2.py -------------------------------------------------------------------------------- /goldsberry_legacy/playtype/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradleyfay/py-Goldsberry/HEAD/goldsberry_legacy/playtype/__init__.py -------------------------------------------------------------------------------- /goldsberry_legacy/sportvu/_SportVu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradleyfay/py-Goldsberry/HEAD/goldsberry_legacy/sportvu/_SportVu.py -------------------------------------------------------------------------------- /goldsberry_legacy/sportvu/_SportVu2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradleyfay/py-Goldsberry/HEAD/goldsberry_legacy/sportvu/_SportVu2.py -------------------------------------------------------------------------------- /goldsberry_legacy/sportvu/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradleyfay/py-Goldsberry/HEAD/goldsberry_legacy/sportvu/__init__.py -------------------------------------------------------------------------------- /goldsberry_legacy/sportvu/sportvu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradleyfay/py-Goldsberry/HEAD/goldsberry_legacy/sportvu/sportvu.py -------------------------------------------------------------------------------- /goldsberry_legacy/team/_Team.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradleyfay/py-Goldsberry/HEAD/goldsberry_legacy/team/_Team.py -------------------------------------------------------------------------------- /goldsberry_legacy/team/_Team2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradleyfay/py-Goldsberry/HEAD/goldsberry_legacy/team/_Team2.py -------------------------------------------------------------------------------- /goldsberry_legacy/team/__init__.py: -------------------------------------------------------------------------------- 1 | from goldsberry.team._Team2 import * 2 | -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradleyfay/py-Goldsberry/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/goldsberry/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradleyfay/py-Goldsberry/HEAD/src/goldsberry/__init__.py -------------------------------------------------------------------------------- /src/goldsberry/client/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/goldsberry/client/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradleyfay/py-Goldsberry/HEAD/src/goldsberry/client/base.py -------------------------------------------------------------------------------- /src/goldsberry/client/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradleyfay/py-Goldsberry/HEAD/src/goldsberry/client/exceptions.py -------------------------------------------------------------------------------- /src/goldsberry/endpoints/__init__.py: -------------------------------------------------------------------------------- 1 | """NBA Stats API endpoint wrappers.""" 2 | -------------------------------------------------------------------------------- /src/goldsberry/endpoints/game/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradleyfay/py-Goldsberry/HEAD/src/goldsberry/endpoints/game/__init__.py -------------------------------------------------------------------------------- /src/goldsberry/endpoints/game/boxscore_advanced.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradleyfay/py-Goldsberry/HEAD/src/goldsberry/endpoints/game/boxscore_advanced.py -------------------------------------------------------------------------------- /src/goldsberry/endpoints/game/boxscore_traditional.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradleyfay/py-Goldsberry/HEAD/src/goldsberry/endpoints/game/boxscore_traditional.py -------------------------------------------------------------------------------- /src/goldsberry/endpoints/league/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradleyfay/py-Goldsberry/HEAD/src/goldsberry/endpoints/league/__init__.py -------------------------------------------------------------------------------- /src/goldsberry/endpoints/league/player_stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradleyfay/py-Goldsberry/HEAD/src/goldsberry/endpoints/league/player_stats.py -------------------------------------------------------------------------------- /src/goldsberry/endpoints/league/team_stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradleyfay/py-Goldsberry/HEAD/src/goldsberry/endpoints/league/team_stats.py -------------------------------------------------------------------------------- /src/goldsberry/endpoints/player/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradleyfay/py-Goldsberry/HEAD/src/goldsberry/endpoints/player/__init__.py -------------------------------------------------------------------------------- /src/goldsberry/endpoints/player/career_stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradleyfay/py-Goldsberry/HEAD/src/goldsberry/endpoints/player/career_stats.py -------------------------------------------------------------------------------- /src/goldsberry/endpoints/player/game_logs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradleyfay/py-Goldsberry/HEAD/src/goldsberry/endpoints/player/game_logs.py -------------------------------------------------------------------------------- /src/goldsberry/endpoints/player/player_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradleyfay/py-Goldsberry/HEAD/src/goldsberry/endpoints/player/player_list.py -------------------------------------------------------------------------------- /src/goldsberry/endpoints/team/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradleyfay/py-Goldsberry/HEAD/src/goldsberry/endpoints/team/__init__.py -------------------------------------------------------------------------------- /src/goldsberry/endpoints/team/game_logs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradleyfay/py-Goldsberry/HEAD/src/goldsberry/endpoints/team/game_logs.py -------------------------------------------------------------------------------- /src/goldsberry/endpoints/team/roster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradleyfay/py-Goldsberry/HEAD/src/goldsberry/endpoints/team/roster.py -------------------------------------------------------------------------------- /src/goldsberry/endpoints/team/season_stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradleyfay/py-Goldsberry/HEAD/src/goldsberry/endpoints/team/season_stats.py -------------------------------------------------------------------------------- /src/goldsberry/enums/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/goldsberry/enums/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradleyfay/py-Goldsberry/HEAD/src/goldsberry/enums/common.py -------------------------------------------------------------------------------- /src/goldsberry/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/goldsberry/models/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradleyfay/py-Goldsberry/HEAD/src/goldsberry/models/base.py -------------------------------------------------------------------------------- /src/goldsberry/models/game/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradleyfay/py-Goldsberry/HEAD/src/goldsberry/models/game/__init__.py -------------------------------------------------------------------------------- /src/goldsberry/models/game/boxscore_advanced.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradleyfay/py-Goldsberry/HEAD/src/goldsberry/models/game/boxscore_advanced.py -------------------------------------------------------------------------------- /src/goldsberry/models/game/boxscore_traditional.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradleyfay/py-Goldsberry/HEAD/src/goldsberry/models/game/boxscore_traditional.py -------------------------------------------------------------------------------- /src/goldsberry/models/league/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradleyfay/py-Goldsberry/HEAD/src/goldsberry/models/league/__init__.py -------------------------------------------------------------------------------- /src/goldsberry/models/league/player_stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradleyfay/py-Goldsberry/HEAD/src/goldsberry/models/league/player_stats.py -------------------------------------------------------------------------------- /src/goldsberry/models/league/team_stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradleyfay/py-Goldsberry/HEAD/src/goldsberry/models/league/team_stats.py -------------------------------------------------------------------------------- /src/goldsberry/models/player/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradleyfay/py-Goldsberry/HEAD/src/goldsberry/models/player/__init__.py -------------------------------------------------------------------------------- /src/goldsberry/models/player/career_stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradleyfay/py-Goldsberry/HEAD/src/goldsberry/models/player/career_stats.py -------------------------------------------------------------------------------- /src/goldsberry/models/player/game_logs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradleyfay/py-Goldsberry/HEAD/src/goldsberry/models/player/game_logs.py -------------------------------------------------------------------------------- /src/goldsberry/models/player/player_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradleyfay/py-Goldsberry/HEAD/src/goldsberry/models/player/player_list.py -------------------------------------------------------------------------------- /src/goldsberry/models/team/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradleyfay/py-Goldsberry/HEAD/src/goldsberry/models/team/__init__.py -------------------------------------------------------------------------------- /src/goldsberry/models/team/game_logs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradleyfay/py-Goldsberry/HEAD/src/goldsberry/models/team/game_logs.py -------------------------------------------------------------------------------- /src/goldsberry/models/team/roster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradleyfay/py-Goldsberry/HEAD/src/goldsberry/models/team/roster.py -------------------------------------------------------------------------------- /src/goldsberry/models/team/season_stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradleyfay/py-Goldsberry/HEAD/src/goldsberry/models/team/season_stats.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradleyfay/py-Goldsberry/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/fixtures/game/boxscore_advanced_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradleyfay/py-Goldsberry/HEAD/tests/fixtures/game/boxscore_advanced_response.json -------------------------------------------------------------------------------- /tests/fixtures/game/boxscore_traditional_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradleyfay/py-Goldsberry/HEAD/tests/fixtures/game/boxscore_traditional_response.json -------------------------------------------------------------------------------- /tests/fixtures/league/player_stats_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradleyfay/py-Goldsberry/HEAD/tests/fixtures/league/player_stats_response.json -------------------------------------------------------------------------------- /tests/fixtures/league/team_stats_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradleyfay/py-Goldsberry/HEAD/tests/fixtures/league/team_stats_response.json -------------------------------------------------------------------------------- /tests/fixtures/player/career_stats_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradleyfay/py-Goldsberry/HEAD/tests/fixtures/player/career_stats_response.json -------------------------------------------------------------------------------- /tests/fixtures/player/game_logs_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradleyfay/py-Goldsberry/HEAD/tests/fixtures/player/game_logs_response.json -------------------------------------------------------------------------------- /tests/fixtures/player/player_list_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradleyfay/py-Goldsberry/HEAD/tests/fixtures/player/player_list_response.json -------------------------------------------------------------------------------- /tests/fixtures/team/game_logs_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradleyfay/py-Goldsberry/HEAD/tests/fixtures/team/game_logs_response.json -------------------------------------------------------------------------------- /tests/fixtures/team/roster_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradleyfay/py-Goldsberry/HEAD/tests/fixtures/team/roster_response.json -------------------------------------------------------------------------------- /tests/fixtures/team/season_stats_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradleyfay/py-Goldsberry/HEAD/tests/fixtures/team/season_stats_response.json -------------------------------------------------------------------------------- /tests/unit/endpoints/game/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for game endpoints.""" 2 | -------------------------------------------------------------------------------- /tests/unit/endpoints/game/test_boxscore_advanced.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradleyfay/py-Goldsberry/HEAD/tests/unit/endpoints/game/test_boxscore_advanced.py -------------------------------------------------------------------------------- /tests/unit/endpoints/game/test_boxscore_traditional.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradleyfay/py-Goldsberry/HEAD/tests/unit/endpoints/game/test_boxscore_traditional.py -------------------------------------------------------------------------------- /tests/unit/endpoints/league/test_player_stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradleyfay/py-Goldsberry/HEAD/tests/unit/endpoints/league/test_player_stats.py -------------------------------------------------------------------------------- /tests/unit/endpoints/league/test_team_stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradleyfay/py-Goldsberry/HEAD/tests/unit/endpoints/league/test_team_stats.py -------------------------------------------------------------------------------- /tests/unit/endpoints/team/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for team endpoints.""" 2 | -------------------------------------------------------------------------------- /tests/unit/endpoints/team/test_game_logs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradleyfay/py-Goldsberry/HEAD/tests/unit/endpoints/team/test_game_logs.py -------------------------------------------------------------------------------- /tests/unit/endpoints/team/test_roster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradleyfay/py-Goldsberry/HEAD/tests/unit/endpoints/team/test_roster.py -------------------------------------------------------------------------------- /tests/unit/endpoints/team/test_season_stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradleyfay/py-Goldsberry/HEAD/tests/unit/endpoints/team/test_season_stats.py -------------------------------------------------------------------------------- /tests/unit/test_career_stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradleyfay/py-Goldsberry/HEAD/tests/unit/test_career_stats.py -------------------------------------------------------------------------------- /tests/unit/test_game_logs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradleyfay/py-Goldsberry/HEAD/tests/unit/test_game_logs.py -------------------------------------------------------------------------------- /tests/unit/test_player_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradleyfay/py-Goldsberry/HEAD/tests/unit/test_player_list.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradleyfay/py-Goldsberry/HEAD/tox.ini -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradleyfay/py-Goldsberry/HEAD/uv.lock --------------------------------------------------------------------------------