├── .coveragerc ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── LICENSE ├── README.md ├── __init__.py ├── basketball_reference_web_scraper ├── __init__.py ├── client.py ├── data.py ├── errors.py ├── html.py ├── http_service.py ├── output │ ├── __init__.py │ ├── columns.py │ ├── fields.py │ ├── service.py │ └── writers.py ├── parser_service.py ├── parsers.py └── utilities.py ├── docs ├── api.md ├── development.md └── index.md ├── mkdocs.yml ├── poetry.lock ├── pyproject.toml ├── scripts ├── Publish Documentation to GitHub Pages.sh ├── build.sh └── end to end tests.sh └── tests ├── __init__.py ├── end to end ├── __init__.py ├── output │ ├── .gitkeep │ ├── expected │ │ ├── 2001_01_01_player_box_scores.csv │ │ ├── 2001_01_01_player_box_scores.json │ │ ├── 2001_season_schedule.csv │ │ ├── 2001_season_schedule.json │ │ ├── 2001_standings.csv │ │ ├── 2001_standings.json │ │ ├── 2003_10_29_TOR_pbp.csv │ │ ├── 2003_10_29_TOR_pbp.json │ │ ├── 2018_01_01_team_box_scores.csv │ │ ├── 2018_01_01_team_box_scores.json │ │ ├── 2018_10_16_BOS_pbp.csv │ │ ├── 2018_10_16_BOS_pbp.json │ │ ├── 2018_10_22_POR_pbp.csv │ │ ├── 2018_10_22_POR_pbp.json │ │ ├── 2018_season_schedule.csv │ │ ├── 2018_season_schedule.json │ │ ├── 2019_standings.csv │ │ ├── 2019_standings.json │ │ ├── ko_search.csv │ │ ├── ko_search.json │ │ ├── player_advanced_season_totals_2001.csv │ │ ├── player_advanced_season_totals_2001.json │ │ ├── player_advanced_season_totals_2016.csv │ │ ├── player_advanced_season_totals_2016.json │ │ ├── player_advanced_season_totals_2017.csv │ │ ├── player_advanced_season_totals_2017.json │ │ ├── player_advanced_season_totals_2018.csv │ │ ├── player_advanced_season_totals_2018.json │ │ ├── player_season_totals_2001.csv │ │ ├── player_season_totals_2001.json │ │ ├── player_season_totals_2002.csv │ │ ├── player_season_totals_2002.json │ │ ├── player_season_totals_2003.csv │ │ ├── player_season_totals_2003.json │ │ ├── player_season_totals_2004.csv │ │ ├── player_season_totals_2004.json │ │ ├── player_season_totals_2005.csv │ │ ├── player_season_totals_2005.json │ │ ├── player_season_totals_2006.csv │ │ ├── player_season_totals_2006.json │ │ ├── player_season_totals_2007.csv │ │ ├── player_season_totals_2007.json │ │ ├── player_season_totals_2008.csv │ │ ├── player_season_totals_2008.json │ │ ├── player_season_totals_2009.csv │ │ ├── player_season_totals_2009.json │ │ ├── player_season_totals_2010.csv │ │ ├── player_season_totals_2010.json │ │ ├── player_season_totals_2011.csv │ │ ├── player_season_totals_2011.json │ │ ├── player_season_totals_2012.csv │ │ ├── player_season_totals_2012.json │ │ ├── player_season_totals_2013.csv │ │ ├── player_season_totals_2013.json │ │ ├── player_season_totals_2014.csv │ │ ├── player_season_totals_2014.json │ │ ├── player_season_totals_2015.csv │ │ ├── player_season_totals_2015.json │ │ ├── player_season_totals_2016.csv │ │ ├── player_season_totals_2016.json │ │ ├── player_season_totals_2017.csv │ │ ├── player_season_totals_2017.json │ │ ├── player_season_totals_2018.csv │ │ ├── player_season_totals_2018.json │ │ ├── playerboxscores │ │ │ └── 2024 │ │ │ │ └── 03 │ │ │ │ ├── 11.csv │ │ │ │ └── 11.json │ │ ├── test-avery-2019-include-inactive.csv │ │ ├── test-avery-2019.csv │ │ ├── test-kawhi-playoffs-2019.csv │ │ ├── test-kawhi-playoffs-2019.json │ │ └── test-westbrook-playoffs-2020-include-inactive.json │ └── generated │ │ ├── .gitkeep │ │ └── playerboxscores │ │ └── 2024 │ │ └── 03 │ │ ├── .gitkeep │ │ └── 11.csv └── test_client.py ├── integration ├── __init__.py ├── client │ ├── __init__.py │ ├── output │ │ ├── expected │ │ │ ├── player_advanced_season_totals │ │ │ │ ├── 2001.csv │ │ │ │ ├── 2001.json │ │ │ │ ├── 2016.csv │ │ │ │ ├── 2016.json │ │ │ │ ├── 2017.csv │ │ │ │ ├── 2017.json │ │ │ │ ├── 2018.csv │ │ │ │ ├── 2018.json │ │ │ │ ├── 2019.csv │ │ │ │ └── 2019.json │ │ │ ├── player_box_scores │ │ │ │ ├── 2001 │ │ │ │ │ └── 1 │ │ │ │ │ │ ├── 1.csv │ │ │ │ │ │ └── 1.json │ │ │ │ └── 2019 │ │ │ │ │ └── bradlav01 │ │ │ │ │ ├── exclude_inactive.csv │ │ │ │ │ ├── exclude_inactive.json │ │ │ │ │ ├── include_inactive.csv │ │ │ │ │ └── include_inactive.json │ │ │ ├── players_season_totals │ │ │ │ ├── 2001.csv │ │ │ │ ├── 2001.json │ │ │ │ ├── 2002.csv │ │ │ │ ├── 2002.json │ │ │ │ ├── 2003.csv │ │ │ │ ├── 2003.json │ │ │ │ ├── 2004.csv │ │ │ │ ├── 2004.json │ │ │ │ ├── 2005.csv │ │ │ │ ├── 2005.json │ │ │ │ ├── 2006.csv │ │ │ │ ├── 2006.json │ │ │ │ ├── 2007.csv │ │ │ │ ├── 2007.json │ │ │ │ ├── 2008.csv │ │ │ │ ├── 2008.json │ │ │ │ ├── 2009.csv │ │ │ │ ├── 2009.json │ │ │ │ ├── 2010.csv │ │ │ │ ├── 2010.json │ │ │ │ ├── 2011.csv │ │ │ │ ├── 2011.json │ │ │ │ ├── 2012.csv │ │ │ │ ├── 2012.json │ │ │ │ ├── 2013.csv │ │ │ │ ├── 2013.json │ │ │ │ ├── 2014.csv │ │ │ │ ├── 2014.json │ │ │ │ ├── 2015.csv │ │ │ │ ├── 2015.json │ │ │ │ ├── 2016.csv │ │ │ │ ├── 2016.json │ │ │ │ ├── 2017.csv │ │ │ │ ├── 2017.json │ │ │ │ ├── 2018.csv │ │ │ │ └── 2018.json │ │ │ ├── playoff_player_box_scores │ │ │ │ └── 2020 │ │ │ │ │ └── westbru01 │ │ │ │ │ ├── include_inactive.csv │ │ │ │ │ └── include_inactive.json │ │ │ ├── search │ │ │ │ ├── kobe.csv │ │ │ │ └── kobe.json │ │ │ ├── season_schedule │ │ │ │ ├── 2001.csv │ │ │ │ ├── 2001.json │ │ │ │ ├── 2018.csv │ │ │ │ └── 2018.json │ │ │ ├── standings │ │ │ │ ├── 2001.csv │ │ │ │ ├── 2001.json │ │ │ │ ├── 2019.csv │ │ │ │ └── 2019.json │ │ │ └── team_box_scores │ │ │ │ └── 2018 │ │ │ │ └── 01 │ │ │ │ ├── 01.csv │ │ │ │ └── 01.json │ │ └── generated │ │ │ ├── player_advanced_season_totals │ │ │ └── .gitkeep │ │ │ ├── player_box_scores │ │ │ ├── 2001 │ │ │ │ └── 1 │ │ │ │ │ └── .gitkeep │ │ │ └── 2019 │ │ │ │ └── bradlav01 │ │ │ │ └── .gitkeep │ │ │ ├── players_season_totals │ │ │ └── .gitkeep │ │ │ ├── playoff_player_box_scores │ │ │ ├── 2019 │ │ │ │ └── .gitkeep │ │ │ └── 2020 │ │ │ │ └── westbru01 │ │ │ │ └── .gitkeep │ │ │ ├── search │ │ │ └── .gitkeep │ │ │ ├── season_schedule │ │ │ └── .gitkeep │ │ │ ├── standings │ │ │ └── .gitkeep │ │ │ └── team_box_scores │ │ │ └── 2018 │ │ │ └── 01 │ │ │ └── .gitkeep │ ├── test_play_by_play.py │ ├── test_player_box_scores.py │ ├── test_player_playoff_box_scores.py │ ├── test_player_regular_season_box_scores.py │ ├── test_players_advanced_season_totals.py │ ├── test_players_season_totals.py │ ├── test_search.py │ ├── test_season_schedule.py │ ├── test_standings.py │ ├── test_team_box_scores.py │ └── utilities.py ├── files │ ├── boxscores │ │ ├── 2001 │ │ │ └── 1 │ │ │ │ └── 1 │ │ │ │ ├── 200101010MIN.html │ │ │ │ ├── 200101010POR.html │ │ │ │ └── index.html │ │ ├── 2017 │ │ │ └── 1 │ │ │ │ ├── 1.html │ │ │ │ └── 201701010ATL.html │ │ └── 2018 │ │ │ └── 1 │ │ │ └── 1 │ │ │ ├── 201801010BRK.html │ │ │ ├── 201801010CHI.html │ │ │ ├── 201801010MIN.html │ │ │ ├── 201801010TOR.html │ │ │ └── index.html │ ├── play_by_play │ │ ├── 199911160ATL.html │ │ ├── 200310290TOR.html │ │ ├── 201810160GSW.html │ │ ├── 201810270MIL.html │ │ ├── 201810290MIL.html │ │ ├── 201901010DEN.html │ │ └── 201901010SAC.html │ ├── player_advanced_season_totals │ │ ├── 2001.html │ │ ├── 2016.html │ │ ├── 2017.html │ │ ├── 2018.html │ │ └── 2019.html │ ├── player_box_scores │ │ ├── 2001 │ │ │ └── 1 │ │ │ │ └── 1.html │ │ ├── 2003 │ │ │ └── 11 │ │ │ │ └── 3.html │ │ ├── 2006 │ │ │ └── 11 │ │ │ │ └── 1.html │ │ ├── 2015 │ │ │ ├── 12 │ │ │ │ └── 18.html │ │ │ └── brownja01.html │ │ ├── 2017 │ │ │ ├── 1 │ │ │ │ └── 29.html │ │ │ └── 12 │ │ │ │ └── 12.html │ │ ├── 2018 │ │ │ └── 1 │ │ │ │ └── 1.html │ │ ├── 2019 │ │ │ ├── bradlav01.html │ │ │ └── westbru01.html │ │ └── 2020 │ │ │ ├── antetgi01.html │ │ │ ├── foobar.html │ │ │ └── westbru01.html │ ├── players_season_totals │ │ ├── 2001.html │ │ ├── 2002.html │ │ ├── 2003.html │ │ ├── 2004.html │ │ ├── 2005.html │ │ ├── 2006.html │ │ ├── 2007.html │ │ ├── 2008.html │ │ ├── 2009.html │ │ ├── 2010.html │ │ ├── 2011.html │ │ ├── 2012.html │ │ ├── 2013.html │ │ ├── 2014.html │ │ ├── 2015.html │ │ ├── 2016.html │ │ ├── 2017.html │ │ ├── 2018.html │ │ ├── 2019.html │ │ ├── 2020.html │ │ ├── 2021.html │ │ ├── 2022.html │ │ ├── 2023.html │ │ └── 2024.html │ ├── schedule │ │ ├── 2000 │ │ │ └── 2000.html │ │ ├── 2001 │ │ │ ├── 2001.html │ │ │ ├── april.html │ │ │ ├── december.html │ │ │ ├── february.html │ │ │ ├── january.html │ │ │ ├── june.html │ │ │ ├── march.html │ │ │ ├── may.html │ │ │ ├── november.html │ │ │ └── october.html │ │ ├── 2002 │ │ │ └── 2002.html │ │ ├── 2005 │ │ │ └── 2005.html │ │ ├── 2018 │ │ │ ├── 2018.html │ │ │ ├── april.html │ │ │ ├── december.html │ │ │ ├── february.html │ │ │ ├── january.html │ │ │ ├── june.html │ │ │ ├── march.html │ │ │ ├── may.html │ │ │ ├── november.html │ │ │ └── october.html │ │ ├── 2019 │ │ │ └── 2019.html │ │ ├── 2020 │ │ │ └── 2020.html │ │ ├── not-found.html │ │ └── upcoming-games.html │ └── search │ │ ├── Alonz.html │ │ ├── Alonzo Mourning.html │ │ ├── Dominique Wilkins.html │ │ ├── Rick Barry.html │ │ ├── ja │ │ ├── 0.html │ │ ├── 1.html │ │ ├── 2.html │ │ ├── 3.html │ │ ├── 4.html │ │ ├── 5.html │ │ ├── 6.html │ │ ├── 7.html │ │ └── 8.html │ │ ├── jaebaebae.html │ │ ├── kobe bryant.html │ │ └── kobe.html ├── html │ ├── __init__.py │ ├── test_daily_box_scores_page.py │ ├── test_play_by_play_page.py │ └── test_player_contracts.py ├── output │ ├── .gitkeep │ ├── expected │ │ ├── 2001_01_01_player_box_scores.csv │ │ ├── 2001_01_01_player_box_scores.json │ │ ├── 2001_season_schedule.csv │ │ ├── 2001_season_schedule.json │ │ ├── 2001_standings.csv │ │ ├── 2001_standings.json │ │ ├── 2003_10_29_TOR_pbp.csv │ │ ├── 2003_10_29_TOR_pbp.json │ │ ├── 2018_01_01_team_box_scores.csv │ │ ├── 2018_01_01_team_box_scores.json │ │ ├── 2018_10_16_BOS_pbp.csv │ │ ├── 2018_10_16_BOS_pbp.json │ │ ├── 2018_10_22_POR_pbp.csv │ │ ├── 2018_10_22_POR_pbp.json │ │ ├── 2018_season_schedule.csv │ │ ├── 2018_season_schedule.json │ │ ├── 2019_standings.csv │ │ ├── 2019_standings.json │ │ ├── ko_search.csv │ │ ├── ko_search.json │ │ ├── player_advanced_season_totals_2001.csv │ │ ├── player_advanced_season_totals_2001.json │ │ ├── player_advanced_season_totals_2016.csv │ │ ├── player_advanced_season_totals_2016.json │ │ ├── player_advanced_season_totals_2017.csv │ │ ├── player_advanced_season_totals_2017.json │ │ ├── player_advanced_season_totals_2018.csv │ │ ├── player_advanced_season_totals_2018.json │ │ ├── player_season_totals_2001.csv │ │ ├── player_season_totals_2001.json │ │ ├── player_season_totals_2002.csv │ │ ├── player_season_totals_2002.json │ │ ├── player_season_totals_2003.csv │ │ ├── player_season_totals_2003.json │ │ ├── player_season_totals_2004.csv │ │ ├── player_season_totals_2004.json │ │ ├── player_season_totals_2005.csv │ │ ├── player_season_totals_2005.json │ │ ├── player_season_totals_2006.csv │ │ ├── player_season_totals_2006.json │ │ ├── player_season_totals_2007.csv │ │ ├── player_season_totals_2007.json │ │ ├── player_season_totals_2008.csv │ │ ├── player_season_totals_2008.json │ │ ├── player_season_totals_2009.csv │ │ ├── player_season_totals_2009.json │ │ ├── player_season_totals_2010.csv │ │ ├── player_season_totals_2010.json │ │ ├── player_season_totals_2011.csv │ │ ├── player_season_totals_2011.json │ │ ├── player_season_totals_2012.csv │ │ ├── player_season_totals_2012.json │ │ ├── player_season_totals_2013.csv │ │ ├── player_season_totals_2013.json │ │ ├── player_season_totals_2014.csv │ │ ├── player_season_totals_2014.json │ │ ├── player_season_totals_2015.csv │ │ ├── player_season_totals_2015.json │ │ ├── player_season_totals_2016.csv │ │ ├── player_season_totals_2016.json │ │ ├── player_season_totals_2017.csv │ │ ├── player_season_totals_2017.json │ │ ├── player_season_totals_2018.csv │ │ ├── player_season_totals_2018.json │ │ ├── test-avery-2019-include-inactive.csv │ │ ├── test-avery-2019.csv │ │ ├── test-kawhi-playoffs-2019.csv │ │ ├── test-kawhi-playoffs-2019.json │ │ ├── test-westbrook-playoffs-2020-include-inactive.csv │ │ └── test-westbrook-playoffs-2020-include-inactive.json │ └── generated │ │ └── .gitkeep └── parsers │ ├── __init__.py │ ├── test_parse_player_advanced_season_totals.py │ ├── test_parse_player_box_scores.py │ ├── test_parse_player_season_totals.py │ ├── test_parse_schedule.py │ └── test_parse_teams.py └── unit ├── __init__.py ├── client ├── __init__.py ├── test_play_by_play.py ├── test_player_advanced_season_totals.py ├── test_player_box_scores.py ├── test_player_season_totals.py ├── test_regular_season_player_box_scores.py ├── test_season_schedule.py └── test_team_box_scores.py ├── html ├── __init__.py ├── test_basic_box_score_row.py ├── test_play_by_play_row.py ├── test_player_advanced_season_totals_row.py ├── test_player_advanced_season_totals_table.py ├── test_player_box_score_row.py ├── test_player_identification_row.py ├── test_player_page.py ├── test_player_page_totals_row.py ├── test_player_page_totals_table.py ├── test_player_search_result.py ├── test_player_season_box_scores_row.py ├── test_player_season_totals_row.py ├── test_schedule_page.py ├── test_schedule_row.py ├── test_search_page.py └── test_search_result.py ├── output ├── __init__.py ├── test_csv_writer.py ├── test_file_options.py ├── test_json_writer.py ├── test_output_service.py └── test_row_formatter.py ├── parsers ├── __init__.py ├── test_league_abbreviation_parser.py ├── test_location_abbreviation_parser.py ├── test_outcome_abbreviation_parser.py ├── test_period_details_parser.py ├── test_period_timestamp_parser.py ├── test_player_box_score_outcome_parser.py ├── test_player_data_parser.py ├── test_resource_location_parser.py ├── test_scheduled_start_time_parser.py ├── test_search_result_name_parser.py ├── test_search_results_parser.py ├── test_seconds_played_parser.py └── test_team_totals_parser.py ├── test_http_service.py ├── test_player_data.py └── test_utilties.py /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/.coveragerc -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /basketball_reference_web_scraper/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /basketball_reference_web_scraper/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/basketball_reference_web_scraper/client.py -------------------------------------------------------------------------------- /basketball_reference_web_scraper/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/basketball_reference_web_scraper/data.py -------------------------------------------------------------------------------- /basketball_reference_web_scraper/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/basketball_reference_web_scraper/errors.py -------------------------------------------------------------------------------- /basketball_reference_web_scraper/html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/basketball_reference_web_scraper/html.py -------------------------------------------------------------------------------- /basketball_reference_web_scraper/http_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/basketball_reference_web_scraper/http_service.py -------------------------------------------------------------------------------- /basketball_reference_web_scraper/output/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /basketball_reference_web_scraper/output/columns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/basketball_reference_web_scraper/output/columns.py -------------------------------------------------------------------------------- /basketball_reference_web_scraper/output/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/basketball_reference_web_scraper/output/fields.py -------------------------------------------------------------------------------- /basketball_reference_web_scraper/output/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/basketball_reference_web_scraper/output/service.py -------------------------------------------------------------------------------- /basketball_reference_web_scraper/output/writers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/basketball_reference_web_scraper/output/writers.py -------------------------------------------------------------------------------- /basketball_reference_web_scraper/parser_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/basketball_reference_web_scraper/parser_service.py -------------------------------------------------------------------------------- /basketball_reference_web_scraper/parsers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/basketball_reference_web_scraper/parsers.py -------------------------------------------------------------------------------- /basketball_reference_web_scraper/utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/basketball_reference_web_scraper/utilities.py -------------------------------------------------------------------------------- /docs/api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/docs/api.md -------------------------------------------------------------------------------- /docs/development.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/docs/development.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/docs/index.md -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/pyproject.toml -------------------------------------------------------------------------------- /scripts/Publish Documentation to GitHub Pages.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/scripts/Publish Documentation to GitHub Pages.sh -------------------------------------------------------------------------------- /scripts/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/scripts/build.sh -------------------------------------------------------------------------------- /scripts/end to end tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/scripts/end to end tests.sh -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/end to end/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/end to end/output/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/end to end/output/expected/2001_01_01_player_box_scores.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/end to end/output/expected/2001_01_01_player_box_scores.csv -------------------------------------------------------------------------------- /tests/end to end/output/expected/2001_01_01_player_box_scores.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/end to end/output/expected/2001_01_01_player_box_scores.json -------------------------------------------------------------------------------- /tests/end to end/output/expected/2001_season_schedule.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/end to end/output/expected/2001_season_schedule.csv -------------------------------------------------------------------------------- /tests/end to end/output/expected/2001_season_schedule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/end to end/output/expected/2001_season_schedule.json -------------------------------------------------------------------------------- /tests/end to end/output/expected/2001_standings.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/end to end/output/expected/2001_standings.csv -------------------------------------------------------------------------------- /tests/end to end/output/expected/2001_standings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/end to end/output/expected/2001_standings.json -------------------------------------------------------------------------------- /tests/end to end/output/expected/2003_10_29_TOR_pbp.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/end to end/output/expected/2003_10_29_TOR_pbp.csv -------------------------------------------------------------------------------- /tests/end to end/output/expected/2003_10_29_TOR_pbp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/end to end/output/expected/2003_10_29_TOR_pbp.json -------------------------------------------------------------------------------- /tests/end to end/output/expected/2018_01_01_team_box_scores.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/end to end/output/expected/2018_01_01_team_box_scores.csv -------------------------------------------------------------------------------- /tests/end to end/output/expected/2018_01_01_team_box_scores.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/end to end/output/expected/2018_01_01_team_box_scores.json -------------------------------------------------------------------------------- /tests/end to end/output/expected/2018_10_16_BOS_pbp.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/end to end/output/expected/2018_10_16_BOS_pbp.csv -------------------------------------------------------------------------------- /tests/end to end/output/expected/2018_10_16_BOS_pbp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/end to end/output/expected/2018_10_16_BOS_pbp.json -------------------------------------------------------------------------------- /tests/end to end/output/expected/2018_10_22_POR_pbp.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/end to end/output/expected/2018_10_22_POR_pbp.csv -------------------------------------------------------------------------------- /tests/end to end/output/expected/2018_10_22_POR_pbp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/end to end/output/expected/2018_10_22_POR_pbp.json -------------------------------------------------------------------------------- /tests/end to end/output/expected/2018_season_schedule.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/end to end/output/expected/2018_season_schedule.csv -------------------------------------------------------------------------------- /tests/end to end/output/expected/2018_season_schedule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/end to end/output/expected/2018_season_schedule.json -------------------------------------------------------------------------------- /tests/end to end/output/expected/2019_standings.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/end to end/output/expected/2019_standings.csv -------------------------------------------------------------------------------- /tests/end to end/output/expected/2019_standings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/end to end/output/expected/2019_standings.json -------------------------------------------------------------------------------- /tests/end to end/output/expected/ko_search.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/end to end/output/expected/ko_search.csv -------------------------------------------------------------------------------- /tests/end to end/output/expected/ko_search.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/end to end/output/expected/ko_search.json -------------------------------------------------------------------------------- /tests/end to end/output/expected/player_advanced_season_totals_2001.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/end to end/output/expected/player_advanced_season_totals_2001.csv -------------------------------------------------------------------------------- /tests/end to end/output/expected/player_advanced_season_totals_2001.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/end to end/output/expected/player_advanced_season_totals_2001.json -------------------------------------------------------------------------------- /tests/end to end/output/expected/player_advanced_season_totals_2016.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/end to end/output/expected/player_advanced_season_totals_2016.csv -------------------------------------------------------------------------------- /tests/end to end/output/expected/player_advanced_season_totals_2016.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/end to end/output/expected/player_advanced_season_totals_2016.json -------------------------------------------------------------------------------- /tests/end to end/output/expected/player_advanced_season_totals_2017.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/end to end/output/expected/player_advanced_season_totals_2017.csv -------------------------------------------------------------------------------- /tests/end to end/output/expected/player_advanced_season_totals_2017.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/end to end/output/expected/player_advanced_season_totals_2017.json -------------------------------------------------------------------------------- /tests/end to end/output/expected/player_advanced_season_totals_2018.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/end to end/output/expected/player_advanced_season_totals_2018.csv -------------------------------------------------------------------------------- /tests/end to end/output/expected/player_advanced_season_totals_2018.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/end to end/output/expected/player_advanced_season_totals_2018.json -------------------------------------------------------------------------------- /tests/end to end/output/expected/player_season_totals_2001.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/end to end/output/expected/player_season_totals_2001.csv -------------------------------------------------------------------------------- /tests/end to end/output/expected/player_season_totals_2001.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/end to end/output/expected/player_season_totals_2001.json -------------------------------------------------------------------------------- /tests/end to end/output/expected/player_season_totals_2002.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/end to end/output/expected/player_season_totals_2002.csv -------------------------------------------------------------------------------- /tests/end to end/output/expected/player_season_totals_2002.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/end to end/output/expected/player_season_totals_2002.json -------------------------------------------------------------------------------- /tests/end to end/output/expected/player_season_totals_2003.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/end to end/output/expected/player_season_totals_2003.csv -------------------------------------------------------------------------------- /tests/end to end/output/expected/player_season_totals_2003.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/end to end/output/expected/player_season_totals_2003.json -------------------------------------------------------------------------------- /tests/end to end/output/expected/player_season_totals_2004.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/end to end/output/expected/player_season_totals_2004.csv -------------------------------------------------------------------------------- /tests/end to end/output/expected/player_season_totals_2004.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/end to end/output/expected/player_season_totals_2004.json -------------------------------------------------------------------------------- /tests/end to end/output/expected/player_season_totals_2005.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/end to end/output/expected/player_season_totals_2005.csv -------------------------------------------------------------------------------- /tests/end to end/output/expected/player_season_totals_2005.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/end to end/output/expected/player_season_totals_2005.json -------------------------------------------------------------------------------- /tests/end to end/output/expected/player_season_totals_2006.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/end to end/output/expected/player_season_totals_2006.csv -------------------------------------------------------------------------------- /tests/end to end/output/expected/player_season_totals_2006.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/end to end/output/expected/player_season_totals_2006.json -------------------------------------------------------------------------------- /tests/end to end/output/expected/player_season_totals_2007.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/end to end/output/expected/player_season_totals_2007.csv -------------------------------------------------------------------------------- /tests/end to end/output/expected/player_season_totals_2007.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/end to end/output/expected/player_season_totals_2007.json -------------------------------------------------------------------------------- /tests/end to end/output/expected/player_season_totals_2008.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/end to end/output/expected/player_season_totals_2008.csv -------------------------------------------------------------------------------- /tests/end to end/output/expected/player_season_totals_2008.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/end to end/output/expected/player_season_totals_2008.json -------------------------------------------------------------------------------- /tests/end to end/output/expected/player_season_totals_2009.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/end to end/output/expected/player_season_totals_2009.csv -------------------------------------------------------------------------------- /tests/end to end/output/expected/player_season_totals_2009.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/end to end/output/expected/player_season_totals_2009.json -------------------------------------------------------------------------------- /tests/end to end/output/expected/player_season_totals_2010.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/end to end/output/expected/player_season_totals_2010.csv -------------------------------------------------------------------------------- /tests/end to end/output/expected/player_season_totals_2010.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/end to end/output/expected/player_season_totals_2010.json -------------------------------------------------------------------------------- /tests/end to end/output/expected/player_season_totals_2011.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/end to end/output/expected/player_season_totals_2011.csv -------------------------------------------------------------------------------- /tests/end to end/output/expected/player_season_totals_2011.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/end to end/output/expected/player_season_totals_2011.json -------------------------------------------------------------------------------- /tests/end to end/output/expected/player_season_totals_2012.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/end to end/output/expected/player_season_totals_2012.csv -------------------------------------------------------------------------------- /tests/end to end/output/expected/player_season_totals_2012.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/end to end/output/expected/player_season_totals_2012.json -------------------------------------------------------------------------------- /tests/end to end/output/expected/player_season_totals_2013.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/end to end/output/expected/player_season_totals_2013.csv -------------------------------------------------------------------------------- /tests/end to end/output/expected/player_season_totals_2013.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/end to end/output/expected/player_season_totals_2013.json -------------------------------------------------------------------------------- /tests/end to end/output/expected/player_season_totals_2014.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/end to end/output/expected/player_season_totals_2014.csv -------------------------------------------------------------------------------- /tests/end to end/output/expected/player_season_totals_2014.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/end to end/output/expected/player_season_totals_2014.json -------------------------------------------------------------------------------- /tests/end to end/output/expected/player_season_totals_2015.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/end to end/output/expected/player_season_totals_2015.csv -------------------------------------------------------------------------------- /tests/end to end/output/expected/player_season_totals_2015.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/end to end/output/expected/player_season_totals_2015.json -------------------------------------------------------------------------------- /tests/end to end/output/expected/player_season_totals_2016.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/end to end/output/expected/player_season_totals_2016.csv -------------------------------------------------------------------------------- /tests/end to end/output/expected/player_season_totals_2016.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/end to end/output/expected/player_season_totals_2016.json -------------------------------------------------------------------------------- /tests/end to end/output/expected/player_season_totals_2017.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/end to end/output/expected/player_season_totals_2017.csv -------------------------------------------------------------------------------- /tests/end to end/output/expected/player_season_totals_2017.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/end to end/output/expected/player_season_totals_2017.json -------------------------------------------------------------------------------- /tests/end to end/output/expected/player_season_totals_2018.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/end to end/output/expected/player_season_totals_2018.csv -------------------------------------------------------------------------------- /tests/end to end/output/expected/player_season_totals_2018.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/end to end/output/expected/player_season_totals_2018.json -------------------------------------------------------------------------------- /tests/end to end/output/expected/playerboxscores/2024/03/11.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/end to end/output/expected/playerboxscores/2024/03/11.csv -------------------------------------------------------------------------------- /tests/end to end/output/expected/playerboxscores/2024/03/11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/end to end/output/expected/playerboxscores/2024/03/11.json -------------------------------------------------------------------------------- /tests/end to end/output/expected/test-avery-2019-include-inactive.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/end to end/output/expected/test-avery-2019-include-inactive.csv -------------------------------------------------------------------------------- /tests/end to end/output/expected/test-avery-2019.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/end to end/output/expected/test-avery-2019.csv -------------------------------------------------------------------------------- /tests/end to end/output/expected/test-kawhi-playoffs-2019.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/end to end/output/expected/test-kawhi-playoffs-2019.csv -------------------------------------------------------------------------------- /tests/end to end/output/expected/test-kawhi-playoffs-2019.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/end to end/output/expected/test-kawhi-playoffs-2019.json -------------------------------------------------------------------------------- /tests/end to end/output/expected/test-westbrook-playoffs-2020-include-inactive.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/end to end/output/expected/test-westbrook-playoffs-2020-include-inactive.json -------------------------------------------------------------------------------- /tests/end to end/output/generated/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/end to end/output/generated/playerboxscores/2024/03/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/end to end/output/generated/playerboxscores/2024/03/11.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/end to end/output/generated/playerboxscores/2024/03/11.csv -------------------------------------------------------------------------------- /tests/end to end/test_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/end to end/test_client.py -------------------------------------------------------------------------------- /tests/integration/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/client/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/client/output/expected/player_advanced_season_totals/2001.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/client/output/expected/player_advanced_season_totals/2001.csv -------------------------------------------------------------------------------- /tests/integration/client/output/expected/player_advanced_season_totals/2001.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/client/output/expected/player_advanced_season_totals/2001.json -------------------------------------------------------------------------------- /tests/integration/client/output/expected/player_advanced_season_totals/2016.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/client/output/expected/player_advanced_season_totals/2016.csv -------------------------------------------------------------------------------- /tests/integration/client/output/expected/player_advanced_season_totals/2016.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/client/output/expected/player_advanced_season_totals/2016.json -------------------------------------------------------------------------------- /tests/integration/client/output/expected/player_advanced_season_totals/2017.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/client/output/expected/player_advanced_season_totals/2017.csv -------------------------------------------------------------------------------- /tests/integration/client/output/expected/player_advanced_season_totals/2017.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/client/output/expected/player_advanced_season_totals/2017.json -------------------------------------------------------------------------------- /tests/integration/client/output/expected/player_advanced_season_totals/2018.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/client/output/expected/player_advanced_season_totals/2018.csv -------------------------------------------------------------------------------- /tests/integration/client/output/expected/player_advanced_season_totals/2018.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/client/output/expected/player_advanced_season_totals/2018.json -------------------------------------------------------------------------------- /tests/integration/client/output/expected/player_advanced_season_totals/2019.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/client/output/expected/player_advanced_season_totals/2019.csv -------------------------------------------------------------------------------- /tests/integration/client/output/expected/player_advanced_season_totals/2019.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/client/output/expected/player_advanced_season_totals/2019.json -------------------------------------------------------------------------------- /tests/integration/client/output/expected/player_box_scores/2001/1/1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/client/output/expected/player_box_scores/2001/1/1.csv -------------------------------------------------------------------------------- /tests/integration/client/output/expected/player_box_scores/2001/1/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/client/output/expected/player_box_scores/2001/1/1.json -------------------------------------------------------------------------------- /tests/integration/client/output/expected/player_box_scores/2019/bradlav01/exclude_inactive.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/client/output/expected/player_box_scores/2019/bradlav01/exclude_inactive.csv -------------------------------------------------------------------------------- /tests/integration/client/output/expected/player_box_scores/2019/bradlav01/exclude_inactive.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/client/output/expected/player_box_scores/2019/bradlav01/exclude_inactive.json -------------------------------------------------------------------------------- /tests/integration/client/output/expected/player_box_scores/2019/bradlav01/include_inactive.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/client/output/expected/player_box_scores/2019/bradlav01/include_inactive.csv -------------------------------------------------------------------------------- /tests/integration/client/output/expected/player_box_scores/2019/bradlav01/include_inactive.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/client/output/expected/player_box_scores/2019/bradlav01/include_inactive.json -------------------------------------------------------------------------------- /tests/integration/client/output/expected/players_season_totals/2001.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/client/output/expected/players_season_totals/2001.csv -------------------------------------------------------------------------------- /tests/integration/client/output/expected/players_season_totals/2001.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/client/output/expected/players_season_totals/2001.json -------------------------------------------------------------------------------- /tests/integration/client/output/expected/players_season_totals/2002.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/client/output/expected/players_season_totals/2002.csv -------------------------------------------------------------------------------- /tests/integration/client/output/expected/players_season_totals/2002.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/client/output/expected/players_season_totals/2002.json -------------------------------------------------------------------------------- /tests/integration/client/output/expected/players_season_totals/2003.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/client/output/expected/players_season_totals/2003.csv -------------------------------------------------------------------------------- /tests/integration/client/output/expected/players_season_totals/2003.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/client/output/expected/players_season_totals/2003.json -------------------------------------------------------------------------------- /tests/integration/client/output/expected/players_season_totals/2004.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/client/output/expected/players_season_totals/2004.csv -------------------------------------------------------------------------------- /tests/integration/client/output/expected/players_season_totals/2004.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/client/output/expected/players_season_totals/2004.json -------------------------------------------------------------------------------- /tests/integration/client/output/expected/players_season_totals/2005.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/client/output/expected/players_season_totals/2005.csv -------------------------------------------------------------------------------- /tests/integration/client/output/expected/players_season_totals/2005.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/client/output/expected/players_season_totals/2005.json -------------------------------------------------------------------------------- /tests/integration/client/output/expected/players_season_totals/2006.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/client/output/expected/players_season_totals/2006.csv -------------------------------------------------------------------------------- /tests/integration/client/output/expected/players_season_totals/2006.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/client/output/expected/players_season_totals/2006.json -------------------------------------------------------------------------------- /tests/integration/client/output/expected/players_season_totals/2007.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/client/output/expected/players_season_totals/2007.csv -------------------------------------------------------------------------------- /tests/integration/client/output/expected/players_season_totals/2007.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/client/output/expected/players_season_totals/2007.json -------------------------------------------------------------------------------- /tests/integration/client/output/expected/players_season_totals/2008.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/client/output/expected/players_season_totals/2008.csv -------------------------------------------------------------------------------- /tests/integration/client/output/expected/players_season_totals/2008.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/client/output/expected/players_season_totals/2008.json -------------------------------------------------------------------------------- /tests/integration/client/output/expected/players_season_totals/2009.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/client/output/expected/players_season_totals/2009.csv -------------------------------------------------------------------------------- /tests/integration/client/output/expected/players_season_totals/2009.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/client/output/expected/players_season_totals/2009.json -------------------------------------------------------------------------------- /tests/integration/client/output/expected/players_season_totals/2010.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/client/output/expected/players_season_totals/2010.csv -------------------------------------------------------------------------------- /tests/integration/client/output/expected/players_season_totals/2010.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/client/output/expected/players_season_totals/2010.json -------------------------------------------------------------------------------- /tests/integration/client/output/expected/players_season_totals/2011.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/client/output/expected/players_season_totals/2011.csv -------------------------------------------------------------------------------- /tests/integration/client/output/expected/players_season_totals/2011.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/client/output/expected/players_season_totals/2011.json -------------------------------------------------------------------------------- /tests/integration/client/output/expected/players_season_totals/2012.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/client/output/expected/players_season_totals/2012.csv -------------------------------------------------------------------------------- /tests/integration/client/output/expected/players_season_totals/2012.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/client/output/expected/players_season_totals/2012.json -------------------------------------------------------------------------------- /tests/integration/client/output/expected/players_season_totals/2013.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/client/output/expected/players_season_totals/2013.csv -------------------------------------------------------------------------------- /tests/integration/client/output/expected/players_season_totals/2013.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/client/output/expected/players_season_totals/2013.json -------------------------------------------------------------------------------- /tests/integration/client/output/expected/players_season_totals/2014.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/client/output/expected/players_season_totals/2014.csv -------------------------------------------------------------------------------- /tests/integration/client/output/expected/players_season_totals/2014.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/client/output/expected/players_season_totals/2014.json -------------------------------------------------------------------------------- /tests/integration/client/output/expected/players_season_totals/2015.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/client/output/expected/players_season_totals/2015.csv -------------------------------------------------------------------------------- /tests/integration/client/output/expected/players_season_totals/2015.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/client/output/expected/players_season_totals/2015.json -------------------------------------------------------------------------------- /tests/integration/client/output/expected/players_season_totals/2016.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/client/output/expected/players_season_totals/2016.csv -------------------------------------------------------------------------------- /tests/integration/client/output/expected/players_season_totals/2016.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/client/output/expected/players_season_totals/2016.json -------------------------------------------------------------------------------- /tests/integration/client/output/expected/players_season_totals/2017.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/client/output/expected/players_season_totals/2017.csv -------------------------------------------------------------------------------- /tests/integration/client/output/expected/players_season_totals/2017.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/client/output/expected/players_season_totals/2017.json -------------------------------------------------------------------------------- /tests/integration/client/output/expected/players_season_totals/2018.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/client/output/expected/players_season_totals/2018.csv -------------------------------------------------------------------------------- /tests/integration/client/output/expected/players_season_totals/2018.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/client/output/expected/players_season_totals/2018.json -------------------------------------------------------------------------------- /tests/integration/client/output/expected/playoff_player_box_scores/2020/westbru01/include_inactive.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/client/output/expected/playoff_player_box_scores/2020/westbru01/include_inactive.csv -------------------------------------------------------------------------------- /tests/integration/client/output/expected/playoff_player_box_scores/2020/westbru01/include_inactive.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/client/output/expected/playoff_player_box_scores/2020/westbru01/include_inactive.json -------------------------------------------------------------------------------- /tests/integration/client/output/expected/search/kobe.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/client/output/expected/search/kobe.csv -------------------------------------------------------------------------------- /tests/integration/client/output/expected/search/kobe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/client/output/expected/search/kobe.json -------------------------------------------------------------------------------- /tests/integration/client/output/expected/season_schedule/2001.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/client/output/expected/season_schedule/2001.csv -------------------------------------------------------------------------------- /tests/integration/client/output/expected/season_schedule/2001.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/client/output/expected/season_schedule/2001.json -------------------------------------------------------------------------------- /tests/integration/client/output/expected/season_schedule/2018.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/client/output/expected/season_schedule/2018.csv -------------------------------------------------------------------------------- /tests/integration/client/output/expected/season_schedule/2018.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/client/output/expected/season_schedule/2018.json -------------------------------------------------------------------------------- /tests/integration/client/output/expected/standings/2001.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/client/output/expected/standings/2001.csv -------------------------------------------------------------------------------- /tests/integration/client/output/expected/standings/2001.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/client/output/expected/standings/2001.json -------------------------------------------------------------------------------- /tests/integration/client/output/expected/standings/2019.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/client/output/expected/standings/2019.csv -------------------------------------------------------------------------------- /tests/integration/client/output/expected/standings/2019.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/client/output/expected/standings/2019.json -------------------------------------------------------------------------------- /tests/integration/client/output/expected/team_box_scores/2018/01/01.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/client/output/expected/team_box_scores/2018/01/01.csv -------------------------------------------------------------------------------- /tests/integration/client/output/expected/team_box_scores/2018/01/01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/client/output/expected/team_box_scores/2018/01/01.json -------------------------------------------------------------------------------- /tests/integration/client/output/generated/player_advanced_season_totals/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/client/output/generated/player_box_scores/2001/1/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/client/output/generated/player_box_scores/2019/bradlav01/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/client/output/generated/players_season_totals/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/client/output/generated/playoff_player_box_scores/2019/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/client/output/generated/playoff_player_box_scores/2020/westbru01/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/client/output/generated/search/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/client/output/generated/season_schedule/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/client/output/generated/standings/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/client/output/generated/team_box_scores/2018/01/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/client/test_play_by_play.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/client/test_play_by_play.py -------------------------------------------------------------------------------- /tests/integration/client/test_player_box_scores.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/client/test_player_box_scores.py -------------------------------------------------------------------------------- /tests/integration/client/test_player_playoff_box_scores.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/client/test_player_playoff_box_scores.py -------------------------------------------------------------------------------- /tests/integration/client/test_player_regular_season_box_scores.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/client/test_player_regular_season_box_scores.py -------------------------------------------------------------------------------- /tests/integration/client/test_players_advanced_season_totals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/client/test_players_advanced_season_totals.py -------------------------------------------------------------------------------- /tests/integration/client/test_players_season_totals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/client/test_players_season_totals.py -------------------------------------------------------------------------------- /tests/integration/client/test_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/client/test_search.py -------------------------------------------------------------------------------- /tests/integration/client/test_season_schedule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/client/test_season_schedule.py -------------------------------------------------------------------------------- /tests/integration/client/test_standings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/client/test_standings.py -------------------------------------------------------------------------------- /tests/integration/client/test_team_box_scores.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/client/test_team_box_scores.py -------------------------------------------------------------------------------- /tests/integration/client/utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/client/utilities.py -------------------------------------------------------------------------------- /tests/integration/files/boxscores/2001/1/1/200101010MIN.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/files/boxscores/2001/1/1/200101010MIN.html -------------------------------------------------------------------------------- /tests/integration/files/boxscores/2001/1/1/200101010POR.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/files/boxscores/2001/1/1/200101010POR.html -------------------------------------------------------------------------------- /tests/integration/files/boxscores/2001/1/1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/files/boxscores/2001/1/1/index.html -------------------------------------------------------------------------------- /tests/integration/files/boxscores/2017/1/1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/files/boxscores/2017/1/1.html -------------------------------------------------------------------------------- /tests/integration/files/boxscores/2017/1/201701010ATL.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/files/boxscores/2017/1/201701010ATL.html -------------------------------------------------------------------------------- /tests/integration/files/boxscores/2018/1/1/201801010BRK.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/files/boxscores/2018/1/1/201801010BRK.html -------------------------------------------------------------------------------- /tests/integration/files/boxscores/2018/1/1/201801010CHI.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/files/boxscores/2018/1/1/201801010CHI.html -------------------------------------------------------------------------------- /tests/integration/files/boxscores/2018/1/1/201801010MIN.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/files/boxscores/2018/1/1/201801010MIN.html -------------------------------------------------------------------------------- /tests/integration/files/boxscores/2018/1/1/201801010TOR.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/files/boxscores/2018/1/1/201801010TOR.html -------------------------------------------------------------------------------- /tests/integration/files/boxscores/2018/1/1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/files/boxscores/2018/1/1/index.html -------------------------------------------------------------------------------- /tests/integration/files/play_by_play/199911160ATL.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/files/play_by_play/199911160ATL.html -------------------------------------------------------------------------------- /tests/integration/files/play_by_play/200310290TOR.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/files/play_by_play/200310290TOR.html -------------------------------------------------------------------------------- /tests/integration/files/play_by_play/201810160GSW.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/files/play_by_play/201810160GSW.html -------------------------------------------------------------------------------- /tests/integration/files/play_by_play/201810270MIL.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/files/play_by_play/201810270MIL.html -------------------------------------------------------------------------------- /tests/integration/files/play_by_play/201810290MIL.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/files/play_by_play/201810290MIL.html -------------------------------------------------------------------------------- /tests/integration/files/play_by_play/201901010DEN.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/files/play_by_play/201901010DEN.html -------------------------------------------------------------------------------- /tests/integration/files/play_by_play/201901010SAC.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/files/play_by_play/201901010SAC.html -------------------------------------------------------------------------------- /tests/integration/files/player_advanced_season_totals/2001.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/files/player_advanced_season_totals/2001.html -------------------------------------------------------------------------------- /tests/integration/files/player_advanced_season_totals/2016.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/files/player_advanced_season_totals/2016.html -------------------------------------------------------------------------------- /tests/integration/files/player_advanced_season_totals/2017.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/files/player_advanced_season_totals/2017.html -------------------------------------------------------------------------------- /tests/integration/files/player_advanced_season_totals/2018.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/files/player_advanced_season_totals/2018.html -------------------------------------------------------------------------------- /tests/integration/files/player_advanced_season_totals/2019.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/files/player_advanced_season_totals/2019.html -------------------------------------------------------------------------------- /tests/integration/files/player_box_scores/2001/1/1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/files/player_box_scores/2001/1/1.html -------------------------------------------------------------------------------- /tests/integration/files/player_box_scores/2003/11/3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/files/player_box_scores/2003/11/3.html -------------------------------------------------------------------------------- /tests/integration/files/player_box_scores/2006/11/1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/files/player_box_scores/2006/11/1.html -------------------------------------------------------------------------------- /tests/integration/files/player_box_scores/2015/12/18.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/files/player_box_scores/2015/12/18.html -------------------------------------------------------------------------------- /tests/integration/files/player_box_scores/2015/brownja01.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/files/player_box_scores/2015/brownja01.html -------------------------------------------------------------------------------- /tests/integration/files/player_box_scores/2017/1/29.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/files/player_box_scores/2017/1/29.html -------------------------------------------------------------------------------- /tests/integration/files/player_box_scores/2017/12/12.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/files/player_box_scores/2017/12/12.html -------------------------------------------------------------------------------- /tests/integration/files/player_box_scores/2018/1/1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/files/player_box_scores/2018/1/1.html -------------------------------------------------------------------------------- /tests/integration/files/player_box_scores/2019/bradlav01.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/files/player_box_scores/2019/bradlav01.html -------------------------------------------------------------------------------- /tests/integration/files/player_box_scores/2019/westbru01.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/files/player_box_scores/2019/westbru01.html -------------------------------------------------------------------------------- /tests/integration/files/player_box_scores/2020/antetgi01.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/files/player_box_scores/2020/antetgi01.html -------------------------------------------------------------------------------- /tests/integration/files/player_box_scores/2020/foobar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/files/player_box_scores/2020/foobar.html -------------------------------------------------------------------------------- /tests/integration/files/player_box_scores/2020/westbru01.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/files/player_box_scores/2020/westbru01.html -------------------------------------------------------------------------------- /tests/integration/files/players_season_totals/2001.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/files/players_season_totals/2001.html -------------------------------------------------------------------------------- /tests/integration/files/players_season_totals/2002.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/files/players_season_totals/2002.html -------------------------------------------------------------------------------- /tests/integration/files/players_season_totals/2003.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/files/players_season_totals/2003.html -------------------------------------------------------------------------------- /tests/integration/files/players_season_totals/2004.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/files/players_season_totals/2004.html -------------------------------------------------------------------------------- /tests/integration/files/players_season_totals/2005.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/files/players_season_totals/2005.html -------------------------------------------------------------------------------- /tests/integration/files/players_season_totals/2006.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/files/players_season_totals/2006.html -------------------------------------------------------------------------------- /tests/integration/files/players_season_totals/2007.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/files/players_season_totals/2007.html -------------------------------------------------------------------------------- /tests/integration/files/players_season_totals/2008.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/files/players_season_totals/2008.html -------------------------------------------------------------------------------- /tests/integration/files/players_season_totals/2009.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/files/players_season_totals/2009.html -------------------------------------------------------------------------------- /tests/integration/files/players_season_totals/2010.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/files/players_season_totals/2010.html -------------------------------------------------------------------------------- /tests/integration/files/players_season_totals/2011.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/files/players_season_totals/2011.html -------------------------------------------------------------------------------- /tests/integration/files/players_season_totals/2012.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/files/players_season_totals/2012.html -------------------------------------------------------------------------------- /tests/integration/files/players_season_totals/2013.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/files/players_season_totals/2013.html -------------------------------------------------------------------------------- /tests/integration/files/players_season_totals/2014.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/files/players_season_totals/2014.html -------------------------------------------------------------------------------- /tests/integration/files/players_season_totals/2015.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/files/players_season_totals/2015.html -------------------------------------------------------------------------------- /tests/integration/files/players_season_totals/2016.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/files/players_season_totals/2016.html -------------------------------------------------------------------------------- /tests/integration/files/players_season_totals/2017.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/files/players_season_totals/2017.html -------------------------------------------------------------------------------- /tests/integration/files/players_season_totals/2018.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/files/players_season_totals/2018.html -------------------------------------------------------------------------------- /tests/integration/files/players_season_totals/2019.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/files/players_season_totals/2019.html -------------------------------------------------------------------------------- /tests/integration/files/players_season_totals/2020.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/files/players_season_totals/2020.html -------------------------------------------------------------------------------- /tests/integration/files/players_season_totals/2021.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/files/players_season_totals/2021.html -------------------------------------------------------------------------------- /tests/integration/files/players_season_totals/2022.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/files/players_season_totals/2022.html -------------------------------------------------------------------------------- /tests/integration/files/players_season_totals/2023.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/files/players_season_totals/2023.html -------------------------------------------------------------------------------- /tests/integration/files/players_season_totals/2024.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/files/players_season_totals/2024.html -------------------------------------------------------------------------------- /tests/integration/files/schedule/2000/2000.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/files/schedule/2000/2000.html -------------------------------------------------------------------------------- /tests/integration/files/schedule/2001/2001.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/files/schedule/2001/2001.html -------------------------------------------------------------------------------- /tests/integration/files/schedule/2001/april.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/files/schedule/2001/april.html -------------------------------------------------------------------------------- /tests/integration/files/schedule/2001/december.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/files/schedule/2001/december.html -------------------------------------------------------------------------------- /tests/integration/files/schedule/2001/february.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/files/schedule/2001/february.html -------------------------------------------------------------------------------- /tests/integration/files/schedule/2001/january.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/files/schedule/2001/january.html -------------------------------------------------------------------------------- /tests/integration/files/schedule/2001/june.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/files/schedule/2001/june.html -------------------------------------------------------------------------------- /tests/integration/files/schedule/2001/march.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/files/schedule/2001/march.html -------------------------------------------------------------------------------- /tests/integration/files/schedule/2001/may.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/files/schedule/2001/may.html -------------------------------------------------------------------------------- /tests/integration/files/schedule/2001/november.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/files/schedule/2001/november.html -------------------------------------------------------------------------------- /tests/integration/files/schedule/2001/october.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/files/schedule/2001/october.html -------------------------------------------------------------------------------- /tests/integration/files/schedule/2002/2002.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/files/schedule/2002/2002.html -------------------------------------------------------------------------------- /tests/integration/files/schedule/2005/2005.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/files/schedule/2005/2005.html -------------------------------------------------------------------------------- /tests/integration/files/schedule/2018/2018.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/files/schedule/2018/2018.html -------------------------------------------------------------------------------- /tests/integration/files/schedule/2018/april.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/files/schedule/2018/april.html -------------------------------------------------------------------------------- /tests/integration/files/schedule/2018/december.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/files/schedule/2018/december.html -------------------------------------------------------------------------------- /tests/integration/files/schedule/2018/february.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/files/schedule/2018/february.html -------------------------------------------------------------------------------- /tests/integration/files/schedule/2018/january.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/files/schedule/2018/january.html -------------------------------------------------------------------------------- /tests/integration/files/schedule/2018/june.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/files/schedule/2018/june.html -------------------------------------------------------------------------------- /tests/integration/files/schedule/2018/march.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/files/schedule/2018/march.html -------------------------------------------------------------------------------- /tests/integration/files/schedule/2018/may.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/files/schedule/2018/may.html -------------------------------------------------------------------------------- /tests/integration/files/schedule/2018/november.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/files/schedule/2018/november.html -------------------------------------------------------------------------------- /tests/integration/files/schedule/2018/october.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/files/schedule/2018/october.html -------------------------------------------------------------------------------- /tests/integration/files/schedule/2019/2019.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/files/schedule/2019/2019.html -------------------------------------------------------------------------------- /tests/integration/files/schedule/2020/2020.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/files/schedule/2020/2020.html -------------------------------------------------------------------------------- /tests/integration/files/schedule/not-found.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/files/schedule/not-found.html -------------------------------------------------------------------------------- /tests/integration/files/schedule/upcoming-games.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/files/schedule/upcoming-games.html -------------------------------------------------------------------------------- /tests/integration/files/search/Alonz.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/files/search/Alonz.html -------------------------------------------------------------------------------- /tests/integration/files/search/Alonzo Mourning.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/files/search/Alonzo Mourning.html -------------------------------------------------------------------------------- /tests/integration/files/search/Dominique Wilkins.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/files/search/Dominique Wilkins.html -------------------------------------------------------------------------------- /tests/integration/files/search/Rick Barry.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/files/search/Rick Barry.html -------------------------------------------------------------------------------- /tests/integration/files/search/ja/0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/files/search/ja/0.html -------------------------------------------------------------------------------- /tests/integration/files/search/ja/1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/files/search/ja/1.html -------------------------------------------------------------------------------- /tests/integration/files/search/ja/2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/files/search/ja/2.html -------------------------------------------------------------------------------- /tests/integration/files/search/ja/3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/files/search/ja/3.html -------------------------------------------------------------------------------- /tests/integration/files/search/ja/4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/files/search/ja/4.html -------------------------------------------------------------------------------- /tests/integration/files/search/ja/5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/files/search/ja/5.html -------------------------------------------------------------------------------- /tests/integration/files/search/ja/6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/files/search/ja/6.html -------------------------------------------------------------------------------- /tests/integration/files/search/ja/7.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/files/search/ja/7.html -------------------------------------------------------------------------------- /tests/integration/files/search/ja/8.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/files/search/ja/8.html -------------------------------------------------------------------------------- /tests/integration/files/search/jaebaebae.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/files/search/jaebaebae.html -------------------------------------------------------------------------------- /tests/integration/files/search/kobe bryant.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/files/search/kobe bryant.html -------------------------------------------------------------------------------- /tests/integration/files/search/kobe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/files/search/kobe.html -------------------------------------------------------------------------------- /tests/integration/html/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/html/test_daily_box_scores_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/html/test_daily_box_scores_page.py -------------------------------------------------------------------------------- /tests/integration/html/test_play_by_play_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/html/test_play_by_play_page.py -------------------------------------------------------------------------------- /tests/integration/html/test_player_contracts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/html/test_player_contracts.py -------------------------------------------------------------------------------- /tests/integration/output/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/output/expected/2001_01_01_player_box_scores.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/output/expected/2001_01_01_player_box_scores.csv -------------------------------------------------------------------------------- /tests/integration/output/expected/2001_01_01_player_box_scores.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/output/expected/2001_01_01_player_box_scores.json -------------------------------------------------------------------------------- /tests/integration/output/expected/2001_season_schedule.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/output/expected/2001_season_schedule.csv -------------------------------------------------------------------------------- /tests/integration/output/expected/2001_season_schedule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/output/expected/2001_season_schedule.json -------------------------------------------------------------------------------- /tests/integration/output/expected/2001_standings.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/output/expected/2001_standings.csv -------------------------------------------------------------------------------- /tests/integration/output/expected/2001_standings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/output/expected/2001_standings.json -------------------------------------------------------------------------------- /tests/integration/output/expected/2003_10_29_TOR_pbp.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/output/expected/2003_10_29_TOR_pbp.csv -------------------------------------------------------------------------------- /tests/integration/output/expected/2003_10_29_TOR_pbp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/output/expected/2003_10_29_TOR_pbp.json -------------------------------------------------------------------------------- /tests/integration/output/expected/2018_01_01_team_box_scores.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/output/expected/2018_01_01_team_box_scores.csv -------------------------------------------------------------------------------- /tests/integration/output/expected/2018_01_01_team_box_scores.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/output/expected/2018_01_01_team_box_scores.json -------------------------------------------------------------------------------- /tests/integration/output/expected/2018_10_16_BOS_pbp.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/output/expected/2018_10_16_BOS_pbp.csv -------------------------------------------------------------------------------- /tests/integration/output/expected/2018_10_16_BOS_pbp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/output/expected/2018_10_16_BOS_pbp.json -------------------------------------------------------------------------------- /tests/integration/output/expected/2018_10_22_POR_pbp.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/output/expected/2018_10_22_POR_pbp.csv -------------------------------------------------------------------------------- /tests/integration/output/expected/2018_10_22_POR_pbp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/output/expected/2018_10_22_POR_pbp.json -------------------------------------------------------------------------------- /tests/integration/output/expected/2018_season_schedule.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/output/expected/2018_season_schedule.csv -------------------------------------------------------------------------------- /tests/integration/output/expected/2018_season_schedule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/output/expected/2018_season_schedule.json -------------------------------------------------------------------------------- /tests/integration/output/expected/2019_standings.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/output/expected/2019_standings.csv -------------------------------------------------------------------------------- /tests/integration/output/expected/2019_standings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/output/expected/2019_standings.json -------------------------------------------------------------------------------- /tests/integration/output/expected/ko_search.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/output/expected/ko_search.csv -------------------------------------------------------------------------------- /tests/integration/output/expected/ko_search.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/output/expected/ko_search.json -------------------------------------------------------------------------------- /tests/integration/output/expected/player_advanced_season_totals_2001.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/output/expected/player_advanced_season_totals_2001.csv -------------------------------------------------------------------------------- /tests/integration/output/expected/player_advanced_season_totals_2001.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/output/expected/player_advanced_season_totals_2001.json -------------------------------------------------------------------------------- /tests/integration/output/expected/player_advanced_season_totals_2016.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/output/expected/player_advanced_season_totals_2016.csv -------------------------------------------------------------------------------- /tests/integration/output/expected/player_advanced_season_totals_2016.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/output/expected/player_advanced_season_totals_2016.json -------------------------------------------------------------------------------- /tests/integration/output/expected/player_advanced_season_totals_2017.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/output/expected/player_advanced_season_totals_2017.csv -------------------------------------------------------------------------------- /tests/integration/output/expected/player_advanced_season_totals_2017.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/output/expected/player_advanced_season_totals_2017.json -------------------------------------------------------------------------------- /tests/integration/output/expected/player_advanced_season_totals_2018.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/output/expected/player_advanced_season_totals_2018.csv -------------------------------------------------------------------------------- /tests/integration/output/expected/player_advanced_season_totals_2018.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/output/expected/player_advanced_season_totals_2018.json -------------------------------------------------------------------------------- /tests/integration/output/expected/player_season_totals_2001.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/output/expected/player_season_totals_2001.csv -------------------------------------------------------------------------------- /tests/integration/output/expected/player_season_totals_2001.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/output/expected/player_season_totals_2001.json -------------------------------------------------------------------------------- /tests/integration/output/expected/player_season_totals_2002.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/output/expected/player_season_totals_2002.csv -------------------------------------------------------------------------------- /tests/integration/output/expected/player_season_totals_2002.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/output/expected/player_season_totals_2002.json -------------------------------------------------------------------------------- /tests/integration/output/expected/player_season_totals_2003.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/output/expected/player_season_totals_2003.csv -------------------------------------------------------------------------------- /tests/integration/output/expected/player_season_totals_2003.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/output/expected/player_season_totals_2003.json -------------------------------------------------------------------------------- /tests/integration/output/expected/player_season_totals_2004.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/output/expected/player_season_totals_2004.csv -------------------------------------------------------------------------------- /tests/integration/output/expected/player_season_totals_2004.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/output/expected/player_season_totals_2004.json -------------------------------------------------------------------------------- /tests/integration/output/expected/player_season_totals_2005.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/output/expected/player_season_totals_2005.csv -------------------------------------------------------------------------------- /tests/integration/output/expected/player_season_totals_2005.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/output/expected/player_season_totals_2005.json -------------------------------------------------------------------------------- /tests/integration/output/expected/player_season_totals_2006.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/output/expected/player_season_totals_2006.csv -------------------------------------------------------------------------------- /tests/integration/output/expected/player_season_totals_2006.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/output/expected/player_season_totals_2006.json -------------------------------------------------------------------------------- /tests/integration/output/expected/player_season_totals_2007.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/output/expected/player_season_totals_2007.csv -------------------------------------------------------------------------------- /tests/integration/output/expected/player_season_totals_2007.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/output/expected/player_season_totals_2007.json -------------------------------------------------------------------------------- /tests/integration/output/expected/player_season_totals_2008.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/output/expected/player_season_totals_2008.csv -------------------------------------------------------------------------------- /tests/integration/output/expected/player_season_totals_2008.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/output/expected/player_season_totals_2008.json -------------------------------------------------------------------------------- /tests/integration/output/expected/player_season_totals_2009.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/output/expected/player_season_totals_2009.csv -------------------------------------------------------------------------------- /tests/integration/output/expected/player_season_totals_2009.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/output/expected/player_season_totals_2009.json -------------------------------------------------------------------------------- /tests/integration/output/expected/player_season_totals_2010.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/output/expected/player_season_totals_2010.csv -------------------------------------------------------------------------------- /tests/integration/output/expected/player_season_totals_2010.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/output/expected/player_season_totals_2010.json -------------------------------------------------------------------------------- /tests/integration/output/expected/player_season_totals_2011.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/output/expected/player_season_totals_2011.csv -------------------------------------------------------------------------------- /tests/integration/output/expected/player_season_totals_2011.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/output/expected/player_season_totals_2011.json -------------------------------------------------------------------------------- /tests/integration/output/expected/player_season_totals_2012.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/output/expected/player_season_totals_2012.csv -------------------------------------------------------------------------------- /tests/integration/output/expected/player_season_totals_2012.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/output/expected/player_season_totals_2012.json -------------------------------------------------------------------------------- /tests/integration/output/expected/player_season_totals_2013.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/output/expected/player_season_totals_2013.csv -------------------------------------------------------------------------------- /tests/integration/output/expected/player_season_totals_2013.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/output/expected/player_season_totals_2013.json -------------------------------------------------------------------------------- /tests/integration/output/expected/player_season_totals_2014.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/output/expected/player_season_totals_2014.csv -------------------------------------------------------------------------------- /tests/integration/output/expected/player_season_totals_2014.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/output/expected/player_season_totals_2014.json -------------------------------------------------------------------------------- /tests/integration/output/expected/player_season_totals_2015.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/output/expected/player_season_totals_2015.csv -------------------------------------------------------------------------------- /tests/integration/output/expected/player_season_totals_2015.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/output/expected/player_season_totals_2015.json -------------------------------------------------------------------------------- /tests/integration/output/expected/player_season_totals_2016.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/output/expected/player_season_totals_2016.csv -------------------------------------------------------------------------------- /tests/integration/output/expected/player_season_totals_2016.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/output/expected/player_season_totals_2016.json -------------------------------------------------------------------------------- /tests/integration/output/expected/player_season_totals_2017.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/output/expected/player_season_totals_2017.csv -------------------------------------------------------------------------------- /tests/integration/output/expected/player_season_totals_2017.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/output/expected/player_season_totals_2017.json -------------------------------------------------------------------------------- /tests/integration/output/expected/player_season_totals_2018.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/output/expected/player_season_totals_2018.csv -------------------------------------------------------------------------------- /tests/integration/output/expected/player_season_totals_2018.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/output/expected/player_season_totals_2018.json -------------------------------------------------------------------------------- /tests/integration/output/expected/test-avery-2019-include-inactive.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/output/expected/test-avery-2019-include-inactive.csv -------------------------------------------------------------------------------- /tests/integration/output/expected/test-avery-2019.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/output/expected/test-avery-2019.csv -------------------------------------------------------------------------------- /tests/integration/output/expected/test-kawhi-playoffs-2019.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/output/expected/test-kawhi-playoffs-2019.csv -------------------------------------------------------------------------------- /tests/integration/output/expected/test-kawhi-playoffs-2019.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/output/expected/test-kawhi-playoffs-2019.json -------------------------------------------------------------------------------- /tests/integration/output/expected/test-westbrook-playoffs-2020-include-inactive.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/output/expected/test-westbrook-playoffs-2020-include-inactive.csv -------------------------------------------------------------------------------- /tests/integration/output/expected/test-westbrook-playoffs-2020-include-inactive.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/output/expected/test-westbrook-playoffs-2020-include-inactive.json -------------------------------------------------------------------------------- /tests/integration/output/generated/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/parsers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/parsers/test_parse_player_advanced_season_totals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/parsers/test_parse_player_advanced_season_totals.py -------------------------------------------------------------------------------- /tests/integration/parsers/test_parse_player_box_scores.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/parsers/test_parse_player_box_scores.py -------------------------------------------------------------------------------- /tests/integration/parsers/test_parse_player_season_totals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/parsers/test_parse_player_season_totals.py -------------------------------------------------------------------------------- /tests/integration/parsers/test_parse_schedule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/parsers/test_parse_schedule.py -------------------------------------------------------------------------------- /tests/integration/parsers/test_parse_teams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/integration/parsers/test_parse_teams.py -------------------------------------------------------------------------------- /tests/unit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/client/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/client/test_play_by_play.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/unit/client/test_play_by_play.py -------------------------------------------------------------------------------- /tests/unit/client/test_player_advanced_season_totals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/unit/client/test_player_advanced_season_totals.py -------------------------------------------------------------------------------- /tests/unit/client/test_player_box_scores.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/unit/client/test_player_box_scores.py -------------------------------------------------------------------------------- /tests/unit/client/test_player_season_totals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/unit/client/test_player_season_totals.py -------------------------------------------------------------------------------- /tests/unit/client/test_regular_season_player_box_scores.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/unit/client/test_regular_season_player_box_scores.py -------------------------------------------------------------------------------- /tests/unit/client/test_season_schedule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/unit/client/test_season_schedule.py -------------------------------------------------------------------------------- /tests/unit/client/test_team_box_scores.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/unit/client/test_team_box_scores.py -------------------------------------------------------------------------------- /tests/unit/html/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/html/test_basic_box_score_row.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/unit/html/test_basic_box_score_row.py -------------------------------------------------------------------------------- /tests/unit/html/test_play_by_play_row.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/unit/html/test_play_by_play_row.py -------------------------------------------------------------------------------- /tests/unit/html/test_player_advanced_season_totals_row.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/unit/html/test_player_advanced_season_totals_row.py -------------------------------------------------------------------------------- /tests/unit/html/test_player_advanced_season_totals_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/unit/html/test_player_advanced_season_totals_table.py -------------------------------------------------------------------------------- /tests/unit/html/test_player_box_score_row.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/unit/html/test_player_box_score_row.py -------------------------------------------------------------------------------- /tests/unit/html/test_player_identification_row.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/unit/html/test_player_identification_row.py -------------------------------------------------------------------------------- /tests/unit/html/test_player_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/unit/html/test_player_page.py -------------------------------------------------------------------------------- /tests/unit/html/test_player_page_totals_row.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/unit/html/test_player_page_totals_row.py -------------------------------------------------------------------------------- /tests/unit/html/test_player_page_totals_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/unit/html/test_player_page_totals_table.py -------------------------------------------------------------------------------- /tests/unit/html/test_player_search_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/unit/html/test_player_search_result.py -------------------------------------------------------------------------------- /tests/unit/html/test_player_season_box_scores_row.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/unit/html/test_player_season_box_scores_row.py -------------------------------------------------------------------------------- /tests/unit/html/test_player_season_totals_row.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/unit/html/test_player_season_totals_row.py -------------------------------------------------------------------------------- /tests/unit/html/test_schedule_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/unit/html/test_schedule_page.py -------------------------------------------------------------------------------- /tests/unit/html/test_schedule_row.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/unit/html/test_schedule_row.py -------------------------------------------------------------------------------- /tests/unit/html/test_search_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/unit/html/test_search_page.py -------------------------------------------------------------------------------- /tests/unit/html/test_search_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/unit/html/test_search_result.py -------------------------------------------------------------------------------- /tests/unit/output/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/output/test_csv_writer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/unit/output/test_csv_writer.py -------------------------------------------------------------------------------- /tests/unit/output/test_file_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/unit/output/test_file_options.py -------------------------------------------------------------------------------- /tests/unit/output/test_json_writer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/unit/output/test_json_writer.py -------------------------------------------------------------------------------- /tests/unit/output/test_output_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/unit/output/test_output_service.py -------------------------------------------------------------------------------- /tests/unit/output/test_row_formatter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/unit/output/test_row_formatter.py -------------------------------------------------------------------------------- /tests/unit/parsers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/parsers/test_league_abbreviation_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/unit/parsers/test_league_abbreviation_parser.py -------------------------------------------------------------------------------- /tests/unit/parsers/test_location_abbreviation_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/unit/parsers/test_location_abbreviation_parser.py -------------------------------------------------------------------------------- /tests/unit/parsers/test_outcome_abbreviation_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/unit/parsers/test_outcome_abbreviation_parser.py -------------------------------------------------------------------------------- /tests/unit/parsers/test_period_details_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/unit/parsers/test_period_details_parser.py -------------------------------------------------------------------------------- /tests/unit/parsers/test_period_timestamp_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/unit/parsers/test_period_timestamp_parser.py -------------------------------------------------------------------------------- /tests/unit/parsers/test_player_box_score_outcome_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/unit/parsers/test_player_box_score_outcome_parser.py -------------------------------------------------------------------------------- /tests/unit/parsers/test_player_data_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/unit/parsers/test_player_data_parser.py -------------------------------------------------------------------------------- /tests/unit/parsers/test_resource_location_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/unit/parsers/test_resource_location_parser.py -------------------------------------------------------------------------------- /tests/unit/parsers/test_scheduled_start_time_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/unit/parsers/test_scheduled_start_time_parser.py -------------------------------------------------------------------------------- /tests/unit/parsers/test_search_result_name_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/unit/parsers/test_search_result_name_parser.py -------------------------------------------------------------------------------- /tests/unit/parsers/test_search_results_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/unit/parsers/test_search_results_parser.py -------------------------------------------------------------------------------- /tests/unit/parsers/test_seconds_played_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/unit/parsers/test_seconds_played_parser.py -------------------------------------------------------------------------------- /tests/unit/parsers/test_team_totals_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/unit/parsers/test_team_totals_parser.py -------------------------------------------------------------------------------- /tests/unit/test_http_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/unit/test_http_service.py -------------------------------------------------------------------------------- /tests/unit/test_player_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/unit/test_player_data.py -------------------------------------------------------------------------------- /tests/unit/test_utilties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/basketball_reference_web_scraper/HEAD/tests/unit/test_utilties.py --------------------------------------------------------------------------------