cbbd 1.21.0__py3-none-any.whl → 1.21.1__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (83) hide show
  1. cbbd/__init__.py +2 -2
  2. cbbd/api/conferences_api.py +1 -1
  3. cbbd/api/draft_api.py +1 -1
  4. cbbd/api/games_api.py +1 -1
  5. cbbd/api/lines_api.py +1 -1
  6. cbbd/api/lineups_api.py +1 -1
  7. cbbd/api/plays_api.py +1 -1
  8. cbbd/api/rankings_api.py +1 -1
  9. cbbd/api/ratings_api.py +1 -1
  10. cbbd/api/recruiting_api.py +1 -1
  11. cbbd/api/stats_api.py +1 -1
  12. cbbd/api/teams_api.py +1 -1
  13. cbbd/api/venues_api.py +1 -1
  14. cbbd/api_client.py +2 -2
  15. cbbd/configuration.py +3 -3
  16. cbbd/exceptions.py +1 -1
  17. cbbd/models/__init__.py +1 -1
  18. cbbd/models/adjusted_efficiency_info.py +1 -1
  19. cbbd/models/adjusted_efficiency_info_rankings.py +1 -1
  20. cbbd/models/conference_history.py +1 -1
  21. cbbd/models/conference_history_teams_inner.py +1 -1
  22. cbbd/models/conference_info.py +1 -1
  23. cbbd/models/draft_pick.py +1 -1
  24. cbbd/models/draft_position.py +1 -1
  25. cbbd/models/draft_team.py +1 -1
  26. cbbd/models/game_box_score_players.py +1 -1
  27. cbbd/models/game_box_score_players_players_inner.py +1 -1
  28. cbbd/models/game_box_score_team.py +1 -1
  29. cbbd/models/game_box_score_team_stats.py +1 -1
  30. cbbd/models/game_box_score_team_stats_points.py +1 -1
  31. cbbd/models/game_info.py +1 -1
  32. cbbd/models/game_line_info.py +1 -1
  33. cbbd/models/game_lines.py +1 -1
  34. cbbd/models/game_media_info.py +1 -1
  35. cbbd/models/game_media_info_broadcasts_inner.py +1 -1
  36. cbbd/models/game_status.py +1 -1
  37. cbbd/models/line_provider_info.py +1 -1
  38. cbbd/models/lineup_stats.py +1 -1
  39. cbbd/models/lineup_unit_stats.py +1 -1
  40. cbbd/models/lineup_unit_stats_four_factors.py +1 -1
  41. cbbd/models/lineup_unit_stats_two_pointers.py +1 -1
  42. cbbd/models/play_info.py +1 -1
  43. cbbd/models/play_info_on_floor_inner.py +1 -1
  44. cbbd/models/play_info_participants_inner.py +1 -1
  45. cbbd/models/play_type_info.py +1 -1
  46. cbbd/models/player_season_shooting_stats.py +1 -1
  47. cbbd/models/player_season_stats.py +1 -1
  48. cbbd/models/player_season_stats_win_shares.py +1 -1
  49. cbbd/models/player_subsititution.py +1 -1
  50. cbbd/models/player_subsititution_sub_in.py +1 -1
  51. cbbd/models/poll_team_info.py +1 -1
  52. cbbd/models/recruit.py +1 -1
  53. cbbd/models/recruit_committed_to.py +1 -1
  54. cbbd/models/recruit_hometown.py +1 -1
  55. cbbd/models/season_shooting_stats.py +1 -1
  56. cbbd/models/season_shooting_stats_attempts_breakdown.py +1 -1
  57. cbbd/models/season_shooting_stats_dunks.py +1 -1
  58. cbbd/models/season_type.py +1 -1
  59. cbbd/models/shooting_stats.py +1 -1
  60. cbbd/models/shot_info.py +1 -1
  61. cbbd/models/shot_info_location.py +1 -1
  62. cbbd/models/shot_info_shooter.py +1 -1
  63. cbbd/models/shot_type_breakdown.py +1 -1
  64. cbbd/models/srs_info.py +1 -1
  65. cbbd/models/team_info.py +1 -1
  66. cbbd/models/team_roster.py +1 -1
  67. cbbd/models/team_roster_player.py +1 -1
  68. cbbd/models/team_roster_player_hometown.py +1 -1
  69. cbbd/models/team_season_stats.py +1 -1
  70. cbbd/models/team_season_unit_stats.py +1 -1
  71. cbbd/models/team_season_unit_stats_field_goals.py +1 -1
  72. cbbd/models/team_season_unit_stats_fouls.py +1 -1
  73. cbbd/models/team_season_unit_stats_four_factors.py +1 -1
  74. cbbd/models/team_season_unit_stats_points.py +1 -1
  75. cbbd/models/team_season_unit_stats_rebounds.py +1 -1
  76. cbbd/models/team_season_unit_stats_turnovers.py +1 -1
  77. cbbd/models/venue_info.py +1 -1
  78. cbbd/rest.py +1 -1
  79. {cbbd-1.21.0.dist-info → cbbd-1.21.1.dist-info}/METADATA +1 -1
  80. cbbd-1.21.1.dist-info/RECORD +85 -0
  81. cbbd-1.21.0.dist-info/RECORD +0 -85
  82. {cbbd-1.21.0.dist-info → cbbd-1.21.1.dist-info}/WHEEL +0 -0
  83. {cbbd-1.21.0.dist-info → cbbd-1.21.1.dist-info}/top_level.txt +0 -0
cbbd/__init__.py CHANGED
@@ -7,7 +7,7 @@
7
7
 
8
8
  This is an API for query various college basketball datasets and analytics. API keys can be acquired by registering on the CollegeBasketballData.com website.
9
9
 
10
- The version of the OpenAPI document: 1.21.0
10
+ The version of the OpenAPI document: 1.21.1
11
11
  Contact: admin@collegefootballdata.com
12
12
  Generated by OpenAPI Generator (https://openapi-generator.tech)
13
13
 
@@ -15,7 +15,7 @@
15
15
  """ # noqa: E501
16
16
 
17
17
 
18
- __version__ = "1.21.0"
18
+ __version__ = "1.21.1"
19
19
 
20
20
  # import apis into sdk package
21
21
  from cbbd.api.conferences_api import ConferencesApi
@@ -5,7 +5,7 @@
5
5
 
6
6
  This is an API for query various college basketball datasets and analytics. API keys can be acquired by registering on the CollegeBasketballData.com website.
7
7
 
8
- The version of the OpenAPI document: 1.21.0
8
+ The version of the OpenAPI document: 1.21.1
9
9
  Contact: admin@collegefootballdata.com
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
cbbd/api/draft_api.py CHANGED
@@ -5,7 +5,7 @@
5
5
 
6
6
  This is an API for query various college basketball datasets and analytics. API keys can be acquired by registering on the CollegeBasketballData.com website.
7
7
 
8
- The version of the OpenAPI document: 1.21.0
8
+ The version of the OpenAPI document: 1.21.1
9
9
  Contact: admin@collegefootballdata.com
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
cbbd/api/games_api.py CHANGED
@@ -5,7 +5,7 @@
5
5
 
6
6
  This is an API for query various college basketball datasets and analytics. API keys can be acquired by registering on the CollegeBasketballData.com website.
7
7
 
8
- The version of the OpenAPI document: 1.21.0
8
+ The version of the OpenAPI document: 1.21.1
9
9
  Contact: admin@collegefootballdata.com
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
cbbd/api/lines_api.py CHANGED
@@ -5,7 +5,7 @@
5
5
 
6
6
  This is an API for query various college basketball datasets and analytics. API keys can be acquired by registering on the CollegeBasketballData.com website.
7
7
 
8
- The version of the OpenAPI document: 1.21.0
8
+ The version of the OpenAPI document: 1.21.1
9
9
  Contact: admin@collegefootballdata.com
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
cbbd/api/lineups_api.py CHANGED
@@ -5,7 +5,7 @@
5
5
 
6
6
  This is an API for query various college basketball datasets and analytics. API keys can be acquired by registering on the CollegeBasketballData.com website.
7
7
 
8
- The version of the OpenAPI document: 1.21.0
8
+ The version of the OpenAPI document: 1.21.1
9
9
  Contact: admin@collegefootballdata.com
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
cbbd/api/plays_api.py CHANGED
@@ -5,7 +5,7 @@
5
5
 
6
6
  This is an API for query various college basketball datasets and analytics. API keys can be acquired by registering on the CollegeBasketballData.com website.
7
7
 
8
- The version of the OpenAPI document: 1.21.0
8
+ The version of the OpenAPI document: 1.21.1
9
9
  Contact: admin@collegefootballdata.com
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
cbbd/api/rankings_api.py CHANGED
@@ -5,7 +5,7 @@
5
5
 
6
6
  This is an API for query various college basketball datasets and analytics. API keys can be acquired by registering on the CollegeBasketballData.com website.
7
7
 
8
- The version of the OpenAPI document: 1.21.0
8
+ The version of the OpenAPI document: 1.21.1
9
9
  Contact: admin@collegefootballdata.com
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
cbbd/api/ratings_api.py CHANGED
@@ -5,7 +5,7 @@
5
5
 
6
6
  This is an API for query various college basketball datasets and analytics. API keys can be acquired by registering on the CollegeBasketballData.com website.
7
7
 
8
- The version of the OpenAPI document: 1.21.0
8
+ The version of the OpenAPI document: 1.21.1
9
9
  Contact: admin@collegefootballdata.com
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  This is an API for query various college basketball datasets and analytics. API keys can be acquired by registering on the CollegeBasketballData.com website.
7
7
 
8
- The version of the OpenAPI document: 1.21.0
8
+ The version of the OpenAPI document: 1.21.1
9
9
  Contact: admin@collegefootballdata.com
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
cbbd/api/stats_api.py CHANGED
@@ -5,7 +5,7 @@
5
5
 
6
6
  This is an API for query various college basketball datasets and analytics. API keys can be acquired by registering on the CollegeBasketballData.com website.
7
7
 
8
- The version of the OpenAPI document: 1.21.0
8
+ The version of the OpenAPI document: 1.21.1
9
9
  Contact: admin@collegefootballdata.com
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
cbbd/api/teams_api.py CHANGED
@@ -5,7 +5,7 @@
5
5
 
6
6
  This is an API for query various college basketball datasets and analytics. API keys can be acquired by registering on the CollegeBasketballData.com website.
7
7
 
8
- The version of the OpenAPI document: 1.21.0
8
+ The version of the OpenAPI document: 1.21.1
9
9
  Contact: admin@collegefootballdata.com
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
cbbd/api/venues_api.py CHANGED
@@ -5,7 +5,7 @@
5
5
 
6
6
  This is an API for query various college basketball datasets and analytics. API keys can be acquired by registering on the CollegeBasketballData.com website.
7
7
 
8
- The version of the OpenAPI document: 1.21.0
8
+ The version of the OpenAPI document: 1.21.1
9
9
  Contact: admin@collegefootballdata.com
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
cbbd/api_client.py CHANGED
@@ -5,7 +5,7 @@
5
5
 
6
6
  This is an API for query various college basketball datasets and analytics. API keys can be acquired by registering on the CollegeBasketballData.com website.
7
7
 
8
- The version of the OpenAPI document: 1.21.0
8
+ The version of the OpenAPI document: 1.21.1
9
9
  Contact: admin@collegefootballdata.com
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -78,7 +78,7 @@ class ApiClient:
78
78
  self.default_headers[header_name] = header_value
79
79
  self.cookie = cookie
80
80
  # Set default User-Agent.
81
- self.user_agent = 'OpenAPI-Generator/1.21.0/python'
81
+ self.user_agent = 'OpenAPI-Generator/1.21.1/python'
82
82
  self.client_side_validation = configuration.client_side_validation
83
83
 
84
84
  def __enter__(self):
cbbd/configuration.py CHANGED
@@ -5,7 +5,7 @@
5
5
 
6
6
  This is an API for query various college basketball datasets and analytics. API keys can be acquired by registering on the CollegeBasketballData.com website.
7
7
 
8
- The version of the OpenAPI document: 1.21.0
8
+ The version of the OpenAPI document: 1.21.1
9
9
  Contact: admin@collegefootballdata.com
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -376,8 +376,8 @@ class Configuration:
376
376
  return "Python SDK Debug Report:\n"\
377
377
  "OS: {env}\n"\
378
378
  "Python Version: {pyversion}\n"\
379
- "Version of the API: 1.21.0\n"\
380
- "SDK Package Version: 1.21.0".\
379
+ "Version of the API: 1.21.1\n"\
380
+ "SDK Package Version: 1.21.1".\
381
381
  format(env=sys.platform, pyversion=sys.version)
382
382
 
383
383
  def get_host_settings(self):
cbbd/exceptions.py CHANGED
@@ -5,7 +5,7 @@
5
5
 
6
6
  This is an API for query various college basketball datasets and analytics. API keys can be acquired by registering on the CollegeBasketballData.com website.
7
7
 
8
- The version of the OpenAPI document: 1.21.0
8
+ The version of the OpenAPI document: 1.21.1
9
9
  Contact: admin@collegefootballdata.com
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
cbbd/models/__init__.py CHANGED
@@ -6,7 +6,7 @@
6
6
 
7
7
  This is an API for query various college basketball datasets and analytics. API keys can be acquired by registering on the CollegeBasketballData.com website.
8
8
 
9
- The version of the OpenAPI document: 1.21.0
9
+ The version of the OpenAPI document: 1.21.1
10
10
  Contact: admin@collegefootballdata.com
11
11
  Generated by OpenAPI Generator (https://openapi-generator.tech)
12
12
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  This is an API for query various college basketball datasets and analytics. API keys can be acquired by registering on the CollegeBasketballData.com website.
7
7
 
8
- The version of the OpenAPI document: 1.21.0
8
+ The version of the OpenAPI document: 1.21.1
9
9
  Contact: admin@collegefootballdata.com
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  This is an API for query various college basketball datasets and analytics. API keys can be acquired by registering on the CollegeBasketballData.com website.
7
7
 
8
- The version of the OpenAPI document: 1.21.0
8
+ The version of the OpenAPI document: 1.21.1
9
9
  Contact: admin@collegefootballdata.com
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  This is an API for query various college basketball datasets and analytics. API keys can be acquired by registering on the CollegeBasketballData.com website.
7
7
 
8
- The version of the OpenAPI document: 1.21.0
8
+ The version of the OpenAPI document: 1.21.1
9
9
  Contact: admin@collegefootballdata.com
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  This is an API for query various college basketball datasets and analytics. API keys can be acquired by registering on the CollegeBasketballData.com website.
7
7
 
8
- The version of the OpenAPI document: 1.21.0
8
+ The version of the OpenAPI document: 1.21.1
9
9
  Contact: admin@collegefootballdata.com
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  This is an API for query various college basketball datasets and analytics. API keys can be acquired by registering on the CollegeBasketballData.com website.
7
7
 
8
- The version of the OpenAPI document: 1.21.0
8
+ The version of the OpenAPI document: 1.21.1
9
9
  Contact: admin@collegefootballdata.com
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
cbbd/models/draft_pick.py CHANGED
@@ -5,7 +5,7 @@
5
5
 
6
6
  This is an API for query various college basketball datasets and analytics. API keys can be acquired by registering on the CollegeBasketballData.com website.
7
7
 
8
- The version of the OpenAPI document: 1.21.0
8
+ The version of the OpenAPI document: 1.21.1
9
9
  Contact: admin@collegefootballdata.com
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  This is an API for query various college basketball datasets and analytics. API keys can be acquired by registering on the CollegeBasketballData.com website.
7
7
 
8
- The version of the OpenAPI document: 1.21.0
8
+ The version of the OpenAPI document: 1.21.1
9
9
  Contact: admin@collegefootballdata.com
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
cbbd/models/draft_team.py CHANGED
@@ -5,7 +5,7 @@
5
5
 
6
6
  This is an API for query various college basketball datasets and analytics. API keys can be acquired by registering on the CollegeBasketballData.com website.
7
7
 
8
- The version of the OpenAPI document: 1.21.0
8
+ The version of the OpenAPI document: 1.21.1
9
9
  Contact: admin@collegefootballdata.com
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  This is an API for query various college basketball datasets and analytics. API keys can be acquired by registering on the CollegeBasketballData.com website.
7
7
 
8
- The version of the OpenAPI document: 1.21.0
8
+ The version of the OpenAPI document: 1.21.1
9
9
  Contact: admin@collegefootballdata.com
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  This is an API for query various college basketball datasets and analytics. API keys can be acquired by registering on the CollegeBasketballData.com website.
7
7
 
8
- The version of the OpenAPI document: 1.21.0
8
+ The version of the OpenAPI document: 1.21.1
9
9
  Contact: admin@collegefootballdata.com
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  This is an API for query various college basketball datasets and analytics. API keys can be acquired by registering on the CollegeBasketballData.com website.
7
7
 
8
- The version of the OpenAPI document: 1.21.0
8
+ The version of the OpenAPI document: 1.21.1
9
9
  Contact: admin@collegefootballdata.com
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  This is an API for query various college basketball datasets and analytics. API keys can be acquired by registering on the CollegeBasketballData.com website.
7
7
 
8
- The version of the OpenAPI document: 1.21.0
8
+ The version of the OpenAPI document: 1.21.1
9
9
  Contact: admin@collegefootballdata.com
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  This is an API for query various college basketball datasets and analytics. API keys can be acquired by registering on the CollegeBasketballData.com website.
7
7
 
8
- The version of the OpenAPI document: 1.21.0
8
+ The version of the OpenAPI document: 1.21.1
9
9
  Contact: admin@collegefootballdata.com
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
cbbd/models/game_info.py CHANGED
@@ -5,7 +5,7 @@
5
5
 
6
6
  This is an API for query various college basketball datasets and analytics. API keys can be acquired by registering on the CollegeBasketballData.com website.
7
7
 
8
- The version of the OpenAPI document: 1.21.0
8
+ The version of the OpenAPI document: 1.21.1
9
9
  Contact: admin@collegefootballdata.com
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  This is an API for query various college basketball datasets and analytics. API keys can be acquired by registering on the CollegeBasketballData.com website.
7
7
 
8
- The version of the OpenAPI document: 1.21.0
8
+ The version of the OpenAPI document: 1.21.1
9
9
  Contact: admin@collegefootballdata.com
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
cbbd/models/game_lines.py CHANGED
@@ -5,7 +5,7 @@
5
5
 
6
6
  This is an API for query various college basketball datasets and analytics. API keys can be acquired by registering on the CollegeBasketballData.com website.
7
7
 
8
- The version of the OpenAPI document: 1.21.0
8
+ The version of the OpenAPI document: 1.21.1
9
9
  Contact: admin@collegefootballdata.com
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  This is an API for query various college basketball datasets and analytics. API keys can be acquired by registering on the CollegeBasketballData.com website.
7
7
 
8
- The version of the OpenAPI document: 1.21.0
8
+ The version of the OpenAPI document: 1.21.1
9
9
  Contact: admin@collegefootballdata.com
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  This is an API for query various college basketball datasets and analytics. API keys can be acquired by registering on the CollegeBasketballData.com website.
7
7
 
8
- The version of the OpenAPI document: 1.21.0
8
+ The version of the OpenAPI document: 1.21.1
9
9
  Contact: admin@collegefootballdata.com
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  This is an API for query various college basketball datasets and analytics. API keys can be acquired by registering on the CollegeBasketballData.com website.
7
7
 
8
- The version of the OpenAPI document: 1.21.0
8
+ The version of the OpenAPI document: 1.21.1
9
9
  Contact: admin@collegefootballdata.com
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  This is an API for query various college basketball datasets and analytics. API keys can be acquired by registering on the CollegeBasketballData.com website.
7
7
 
8
- The version of the OpenAPI document: 1.21.0
8
+ The version of the OpenAPI document: 1.21.1
9
9
  Contact: admin@collegefootballdata.com
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  This is an API for query various college basketball datasets and analytics. API keys can be acquired by registering on the CollegeBasketballData.com website.
7
7
 
8
- The version of the OpenAPI document: 1.21.0
8
+ The version of the OpenAPI document: 1.21.1
9
9
  Contact: admin@collegefootballdata.com
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  This is an API for query various college basketball datasets and analytics. API keys can be acquired by registering on the CollegeBasketballData.com website.
7
7
 
8
- The version of the OpenAPI document: 1.21.0
8
+ The version of the OpenAPI document: 1.21.1
9
9
  Contact: admin@collegefootballdata.com
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  This is an API for query various college basketball datasets and analytics. API keys can be acquired by registering on the CollegeBasketballData.com website.
7
7
 
8
- The version of the OpenAPI document: 1.21.0
8
+ The version of the OpenAPI document: 1.21.1
9
9
  Contact: admin@collegefootballdata.com
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  This is an API for query various college basketball datasets and analytics. API keys can be acquired by registering on the CollegeBasketballData.com website.
7
7
 
8
- The version of the OpenAPI document: 1.21.0
8
+ The version of the OpenAPI document: 1.21.1
9
9
  Contact: admin@collegefootballdata.com
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
cbbd/models/play_info.py CHANGED
@@ -5,7 +5,7 @@
5
5
 
6
6
  This is an API for query various college basketball datasets and analytics. API keys can be acquired by registering on the CollegeBasketballData.com website.
7
7
 
8
- The version of the OpenAPI document: 1.21.0
8
+ The version of the OpenAPI document: 1.21.1
9
9
  Contact: admin@collegefootballdata.com
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  This is an API for query various college basketball datasets and analytics. API keys can be acquired by registering on the CollegeBasketballData.com website.
7
7
 
8
- The version of the OpenAPI document: 1.21.0
8
+ The version of the OpenAPI document: 1.21.1
9
9
  Contact: admin@collegefootballdata.com
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  This is an API for query various college basketball datasets and analytics. API keys can be acquired by registering on the CollegeBasketballData.com website.
7
7
 
8
- The version of the OpenAPI document: 1.21.0
8
+ The version of the OpenAPI document: 1.21.1
9
9
  Contact: admin@collegefootballdata.com
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  This is an API for query various college basketball datasets and analytics. API keys can be acquired by registering on the CollegeBasketballData.com website.
7
7
 
8
- The version of the OpenAPI document: 1.21.0
8
+ The version of the OpenAPI document: 1.21.1
9
9
  Contact: admin@collegefootballdata.com
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  This is an API for query various college basketball datasets and analytics. API keys can be acquired by registering on the CollegeBasketballData.com website.
7
7
 
8
- The version of the OpenAPI document: 1.21.0
8
+ The version of the OpenAPI document: 1.21.1
9
9
  Contact: admin@collegefootballdata.com
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  This is an API for query various college basketball datasets and analytics. API keys can be acquired by registering on the CollegeBasketballData.com website.
7
7
 
8
- The version of the OpenAPI document: 1.21.0
8
+ The version of the OpenAPI document: 1.21.1
9
9
  Contact: admin@collegefootballdata.com
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  This is an API for query various college basketball datasets and analytics. API keys can be acquired by registering on the CollegeBasketballData.com website.
7
7
 
8
- The version of the OpenAPI document: 1.21.0
8
+ The version of the OpenAPI document: 1.21.1
9
9
  Contact: admin@collegefootballdata.com
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  This is an API for query various college basketball datasets and analytics. API keys can be acquired by registering on the CollegeBasketballData.com website.
7
7
 
8
- The version of the OpenAPI document: 1.21.0
8
+ The version of the OpenAPI document: 1.21.1
9
9
  Contact: admin@collegefootballdata.com
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  This is an API for query various college basketball datasets and analytics. API keys can be acquired by registering on the CollegeBasketballData.com website.
7
7
 
8
- The version of the OpenAPI document: 1.21.0
8
+ The version of the OpenAPI document: 1.21.1
9
9
  Contact: admin@collegefootballdata.com
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  This is an API for query various college basketball datasets and analytics. API keys can be acquired by registering on the CollegeBasketballData.com website.
7
7
 
8
- The version of the OpenAPI document: 1.21.0
8
+ The version of the OpenAPI document: 1.21.1
9
9
  Contact: admin@collegefootballdata.com
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
cbbd/models/recruit.py CHANGED
@@ -5,7 +5,7 @@
5
5
 
6
6
  This is an API for query various college basketball datasets and analytics. API keys can be acquired by registering on the CollegeBasketballData.com website.
7
7
 
8
- The version of the OpenAPI document: 1.21.0
8
+ The version of the OpenAPI document: 1.21.1
9
9
  Contact: admin@collegefootballdata.com
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  This is an API for query various college basketball datasets and analytics. API keys can be acquired by registering on the CollegeBasketballData.com website.
7
7
 
8
- The version of the OpenAPI document: 1.21.0
8
+ The version of the OpenAPI document: 1.21.1
9
9
  Contact: admin@collegefootballdata.com
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  This is an API for query various college basketball datasets and analytics. API keys can be acquired by registering on the CollegeBasketballData.com website.
7
7
 
8
- The version of the OpenAPI document: 1.21.0
8
+ The version of the OpenAPI document: 1.21.1
9
9
  Contact: admin@collegefootballdata.com
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  This is an API for query various college basketball datasets and analytics. API keys can be acquired by registering on the CollegeBasketballData.com website.
7
7
 
8
- The version of the OpenAPI document: 1.21.0
8
+ The version of the OpenAPI document: 1.21.1
9
9
  Contact: admin@collegefootballdata.com
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  This is an API for query various college basketball datasets and analytics. API keys can be acquired by registering on the CollegeBasketballData.com website.
7
7
 
8
- The version of the OpenAPI document: 1.21.0
8
+ The version of the OpenAPI document: 1.21.1
9
9
  Contact: admin@collegefootballdata.com
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  This is an API for query various college basketball datasets and analytics. API keys can be acquired by registering on the CollegeBasketballData.com website.
7
7
 
8
- The version of the OpenAPI document: 1.21.0
8
+ The version of the OpenAPI document: 1.21.1
9
9
  Contact: admin@collegefootballdata.com
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  This is an API for query various college basketball datasets and analytics. API keys can be acquired by registering on the CollegeBasketballData.com website.
7
7
 
8
- The version of the OpenAPI document: 1.21.0
8
+ The version of the OpenAPI document: 1.21.1
9
9
  Contact: admin@collegefootballdata.com
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  This is an API for query various college basketball datasets and analytics. API keys can be acquired by registering on the CollegeBasketballData.com website.
7
7
 
8
- The version of the OpenAPI document: 1.21.0
8
+ The version of the OpenAPI document: 1.21.1
9
9
  Contact: admin@collegefootballdata.com
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
cbbd/models/shot_info.py CHANGED
@@ -5,7 +5,7 @@
5
5
 
6
6
  This is an API for query various college basketball datasets and analytics. API keys can be acquired by registering on the CollegeBasketballData.com website.
7
7
 
8
- The version of the OpenAPI document: 1.21.0
8
+ The version of the OpenAPI document: 1.21.1
9
9
  Contact: admin@collegefootballdata.com
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  This is an API for query various college basketball datasets and analytics. API keys can be acquired by registering on the CollegeBasketballData.com website.
7
7
 
8
- The version of the OpenAPI document: 1.21.0
8
+ The version of the OpenAPI document: 1.21.1
9
9
  Contact: admin@collegefootballdata.com
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  This is an API for query various college basketball datasets and analytics. API keys can be acquired by registering on the CollegeBasketballData.com website.
7
7
 
8
- The version of the OpenAPI document: 1.21.0
8
+ The version of the OpenAPI document: 1.21.1
9
9
  Contact: admin@collegefootballdata.com
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  This is an API for query various college basketball datasets and analytics. API keys can be acquired by registering on the CollegeBasketballData.com website.
7
7
 
8
- The version of the OpenAPI document: 1.21.0
8
+ The version of the OpenAPI document: 1.21.1
9
9
  Contact: admin@collegefootballdata.com
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
cbbd/models/srs_info.py CHANGED
@@ -5,7 +5,7 @@
5
5
 
6
6
  This is an API for query various college basketball datasets and analytics. API keys can be acquired by registering on the CollegeBasketballData.com website.
7
7
 
8
- The version of the OpenAPI document: 1.21.0
8
+ The version of the OpenAPI document: 1.21.1
9
9
  Contact: admin@collegefootballdata.com
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
cbbd/models/team_info.py CHANGED
@@ -5,7 +5,7 @@
5
5
 
6
6
  This is an API for query various college basketball datasets and analytics. API keys can be acquired by registering on the CollegeBasketballData.com website.
7
7
 
8
- The version of the OpenAPI document: 1.21.0
8
+ The version of the OpenAPI document: 1.21.1
9
9
  Contact: admin@collegefootballdata.com
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  This is an API for query various college basketball datasets and analytics. API keys can be acquired by registering on the CollegeBasketballData.com website.
7
7
 
8
- The version of the OpenAPI document: 1.21.0
8
+ The version of the OpenAPI document: 1.21.1
9
9
  Contact: admin@collegefootballdata.com
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  This is an API for query various college basketball datasets and analytics. API keys can be acquired by registering on the CollegeBasketballData.com website.
7
7
 
8
- The version of the OpenAPI document: 1.21.0
8
+ The version of the OpenAPI document: 1.21.1
9
9
  Contact: admin@collegefootballdata.com
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  This is an API for query various college basketball datasets and analytics. API keys can be acquired by registering on the CollegeBasketballData.com website.
7
7
 
8
- The version of the OpenAPI document: 1.21.0
8
+ The version of the OpenAPI document: 1.21.1
9
9
  Contact: admin@collegefootballdata.com
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  This is an API for query various college basketball datasets and analytics. API keys can be acquired by registering on the CollegeBasketballData.com website.
7
7
 
8
- The version of the OpenAPI document: 1.21.0
8
+ The version of the OpenAPI document: 1.21.1
9
9
  Contact: admin@collegefootballdata.com
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  This is an API for query various college basketball datasets and analytics. API keys can be acquired by registering on the CollegeBasketballData.com website.
7
7
 
8
- The version of the OpenAPI document: 1.21.0
8
+ The version of the OpenAPI document: 1.21.1
9
9
  Contact: admin@collegefootballdata.com
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  This is an API for query various college basketball datasets and analytics. API keys can be acquired by registering on the CollegeBasketballData.com website.
7
7
 
8
- The version of the OpenAPI document: 1.21.0
8
+ The version of the OpenAPI document: 1.21.1
9
9
  Contact: admin@collegefootballdata.com
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  This is an API for query various college basketball datasets and analytics. API keys can be acquired by registering on the CollegeBasketballData.com website.
7
7
 
8
- The version of the OpenAPI document: 1.21.0
8
+ The version of the OpenAPI document: 1.21.1
9
9
  Contact: admin@collegefootballdata.com
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  This is an API for query various college basketball datasets and analytics. API keys can be acquired by registering on the CollegeBasketballData.com website.
7
7
 
8
- The version of the OpenAPI document: 1.21.0
8
+ The version of the OpenAPI document: 1.21.1
9
9
  Contact: admin@collegefootballdata.com
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  This is an API for query various college basketball datasets and analytics. API keys can be acquired by registering on the CollegeBasketballData.com website.
7
7
 
8
- The version of the OpenAPI document: 1.21.0
8
+ The version of the OpenAPI document: 1.21.1
9
9
  Contact: admin@collegefootballdata.com
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  This is an API for query various college basketball datasets and analytics. API keys can be acquired by registering on the CollegeBasketballData.com website.
7
7
 
8
- The version of the OpenAPI document: 1.21.0
8
+ The version of the OpenAPI document: 1.21.1
9
9
  Contact: admin@collegefootballdata.com
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  This is an API for query various college basketball datasets and analytics. API keys can be acquired by registering on the CollegeBasketballData.com website.
7
7
 
8
- The version of the OpenAPI document: 1.21.0
8
+ The version of the OpenAPI document: 1.21.1
9
9
  Contact: admin@collegefootballdata.com
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
cbbd/models/venue_info.py CHANGED
@@ -5,7 +5,7 @@
5
5
 
6
6
  This is an API for query various college basketball datasets and analytics. API keys can be acquired by registering on the CollegeBasketballData.com website.
7
7
 
8
- The version of the OpenAPI document: 1.21.0
8
+ The version of the OpenAPI document: 1.21.1
9
9
  Contact: admin@collegefootballdata.com
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
cbbd/rest.py CHANGED
@@ -5,7 +5,7 @@
5
5
 
6
6
  This is an API for query various college basketball datasets and analytics. API keys can be acquired by registering on the CollegeBasketballData.com website.
7
7
 
8
- The version of the OpenAPI document: 1.21.0
8
+ The version of the OpenAPI document: 1.21.1
9
9
  Contact: admin@collegefootballdata.com
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: cbbd
3
- Version: 1.21.0
3
+ Version: 1.21.1
4
4
  Summary: College Basketball Data API
5
5
  Home-page: https://github.com/CFBD/cbbd-python
6
6
  Author-email: admin@collegefootballdata.com
@@ -0,0 +1,85 @@
1
+ cbbd/__init__.py,sha256=TRcNeOZTiN1x8yzpcjAUYVx4lo5DAxEKRf6Ohy-Ru4I,5331
2
+ cbbd/api_client.py,sha256=_bjhhChyLNdCp1lUFyuTZD4DS4txgw6cmhX6q1G_Lu4,29897
3
+ cbbd/api_response.py,sha256=uCehWdXXDnAO2HAHGKe0SgpQ_mJiGDbcu-BHDF3n_IM,852
4
+ cbbd/configuration.py,sha256=XeaR58Jm2o4AP7vF0y4LVuGWl1xMp5jbPMWBpNRZUNY,14793
5
+ cbbd/exceptions.py,sha256=tTwa9v0MuyMM0OdukOSwBPHM-cucWT_rp-sZda0ujrE,5540
6
+ cbbd/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
7
+ cbbd/rest.py,sha256=c0vzk2DePODXxIJBLgZhddORXG2LSkRHT5yzQjg2U9c,14157
8
+ cbbd/api/__init__.py,sha256=BG9pqmB2-l6ByYSh1FXjVHzeEqmvxQgr_MWR1z2NKrg,566
9
+ cbbd/api/conferences_api.py,sha256=ME4CtVaLuNH9A7IPa9fY1tkIC89H4BqZJn00-lRb4Ho,13073
10
+ cbbd/api/draft_api.py,sha256=D8DoEaPvq60we5XJU4hGD8Q4o8p5N9eqWscF8GOjHTM,20203
11
+ cbbd/api/games_api.py,sha256=tg-8Yt2v2eDQF4vRgmWFek9cQ95wj6O1Eus348HBWH8,43817
12
+ cbbd/api/lines_api.py,sha256=deTaAc2sGFFnzlxzzel-Rzl0JYI4-gMx4i3sD5ePJIk,15881
13
+ cbbd/api/lineups_api.py,sha256=9xVxTJEoZJZzKw-SBLMjqJpSOw-dYSPUXW751RHzkn4,15742
14
+ cbbd/api/plays_api.py,sha256=dfmYg0G9oArGPN6WPCeze4K3O9bIA0tPsNx2LaxKJfU,62477
15
+ cbbd/api/rankings_api.py,sha256=fkqtTAVIhDktKyPJuFyX0uey_mNyWJQC8XXSarKPzgk,9999
16
+ cbbd/api/ratings_api.py,sha256=ALVZhnxNQFGad5uvNTD5w5Cg0ZSuWs9Gamk3uODzprg,15673
17
+ cbbd/api/recruiting_api.py,sha256=-ABSoU2DzVWbJYoUvoWL2v8r6KvLZIS_JuF6dFcS_qo,8852
18
+ cbbd/api/stats_api.py,sha256=JifWYEVx7KMxpdpkyFLXZ80xt1ec1JNl5Gez4L5yE2c,40166
19
+ cbbd/api/teams_api.py,sha256=4FKgu6ObDhzZeNriaR_G7WUaPV2Bhl-a6-garzpi0uo,14202
20
+ cbbd/api/venues_api.py,sha256=_lo82X_E1OjA9oP-xdDN-Ci27XIKg6C9FSS1pazo5R4,6562
21
+ cbbd/models/__init__.py,sha256=DSbIoSBi0rZnajfKsrRZWL5KO2NL95f2JdW_VW6cwNM,4358
22
+ cbbd/models/adjusted_efficiency_info.py,sha256=U8vzLBUdfkGdBrDIa97_VqivtpthWPZtOBQH1sf93bI,3364
23
+ cbbd/models/adjusted_efficiency_info_rankings.py,sha256=NurdYX0Oi7Az_YUds1ONzyKJGRPld8YKrrfbxQM69Ss,2392
24
+ cbbd/models/conference_history.py,sha256=p9f4FV4Kj4sUkYxHji35aKKJ6LBGaGjJcs-IuMW46h4,3078
25
+ cbbd/models/conference_history_teams_inner.py,sha256=O-Cf0nQlHrmar65_W69JqYQ38uPbUpGJAnytK531WNw,3124
26
+ cbbd/models/conference_info.py,sha256=do_loFiygpbKq9rCvNvgsNSDyeq2PpkOgcVxAi0q744,2431
27
+ cbbd/models/draft_pick.py,sha256=6vaJo-ObZF7z_yA4aHgumBBGoxprSOW3uXb-1k7S8d8,6566
28
+ cbbd/models/draft_position.py,sha256=hBwMnvI4jffUyZBiHs_RfxvMys6fWIbGRx9T3Xh69tc,2093
29
+ cbbd/models/draft_team.py,sha256=eTLeNflerF2kSnAv_-aMKgKiedLzAhMixwgoP3gU-es,2552
30
+ cbbd/models/game_box_score_players.py,sha256=QfMod86YzzYz9rClCganjiL4E6cMNMxP0QoWr29tP0U,7522
31
+ cbbd/models/game_box_score_players_players_inner.py,sha256=i8sIU5GaRd62CCss6pXfdbJYqj1U-AtSh5bTYXb55rQ,12087
32
+ cbbd/models/game_box_score_team.py,sha256=yRXmeph5CUBpFyxkEGEfsAjW7vywivPgJZYRYTpMkDs,7693
33
+ cbbd/models/game_box_score_team_stats.py,sha256=vhHIDxO2M3TcFGTSIZ7XrTqdk_0zDYBpRfq5tW7izRw,8681
34
+ cbbd/models/game_box_score_team_stats_points.py,sha256=Y_5Bu1kAExD8ENKynKya2uvThbRIIIG5zmm9acIOhE4,4292
35
+ cbbd/models/game_info.py,sha256=ZRXR7LkKNDJpuve9CJG0HS6wtyzOk8f7uUMB3s2Jmns,11358
36
+ cbbd/models/game_line_info.py,sha256=jjPbqDzZqqP7f8LMB10NEBMbSxoGlNRtvBqIAm0nYDw,4365
37
+ cbbd/models/game_lines.py,sha256=TD5LOO3G13DqW3HAF5Gzoa1nafgfZLLAAv29HYNdLuM,5071
38
+ cbbd/models/game_media_info.py,sha256=-k58glGcDjO5k1kT3psTu0e8O-r_lyc_7l36zekECpQ,5997
39
+ cbbd/models/game_media_info_broadcasts_inner.py,sha256=IZKHMnm_1chlex5KcEWqfJKARgGtl9nlEsm__XBPjpQ,2319
40
+ cbbd/models/game_status.py,sha256=ttEfSzEusSjmnFiuzrO5MZONf706_UJe70Wmn5DmFgw,943
41
+ cbbd/models/line_provider_info.py,sha256=9aVHD6fBirTGRiyFtbrlMQ0HRterfkj1F13-sv00XMo,2088
42
+ cbbd/models/lineup_stats.py,sha256=jQa1uInbVQdxDvSXFIYgLkoNiufsP2px0VO8iTIXPKw,4569
43
+ cbbd/models/lineup_unit_stats.py,sha256=YZSUUNsQJzbK68z4P1eh2qMABWvOvGGftkHj11i9nvE,5265
44
+ cbbd/models/lineup_unit_stats_four_factors.py,sha256=upUdhk-N4TLCDByvfBW23U8kABJjCyP9kALjsXbTrAM,2792
45
+ cbbd/models/lineup_unit_stats_two_pointers.py,sha256=CvoRbxGYKUOISKvcRIceS_P84xSKNM34oC-zFrlWMnU,3674
46
+ cbbd/models/play_info.py,sha256=MSOeam7O8HElE3bmuSVqj7rj-3QzTVD-PtYl33Fkzqg,11368
47
+ cbbd/models/play_info_on_floor_inner.py,sha256=aHczusrLhzPZfUX9FXxH0TY15n1tlsICw--GNVL6yGY,2198
48
+ cbbd/models/play_info_participants_inner.py,sha256=je4D_FtrsZbOqp8ug4ZVDqsWIliqxWZmQe4RCKGxp5w,2160
49
+ cbbd/models/play_type_info.py,sha256=rN48Pq7HcqK5O7RfpMm_cZm9Q58SDe203cw5SSAii74,2056
50
+ cbbd/models/player_season_shooting_stats.py,sha256=86_ageNgFGZrAyOBYCvClYNlkxadBbEu4IcEeTszeSk,6518
51
+ cbbd/models/player_season_stats.py,sha256=KbExCrV2f0UckRB09P-zXginUCpzrKEm-C828oM1p2U,12536
52
+ cbbd/models/player_season_stats_win_shares.py,sha256=pH2cl2XGY6JMxKam_P-4aZYMb5-n0xtP365jtWlVGCE,3437
53
+ cbbd/models/player_subsititution.py,sha256=FGeBJRlcxmW-yOZsF3KP1ywy6Hd0qcAfUZ7Dhu7M5lk,4780
54
+ cbbd/models/player_subsititution_sub_in.py,sha256=ja2i0TEiY3am7akI_hLxIpPsmqaJJySj-NM-FsVEBaQ,2525
55
+ cbbd/models/poll_team_info.py,sha256=HTKH-bTl4G5WIOTcEwcHLVlH4SviBktajc1jmWQz-f4,4416
56
+ cbbd/models/recruit.py,sha256=al3vh13PcNLY2XfSbIRoUC3wBhXiB8i1RvCHfKtOu2A,6388
57
+ cbbd/models/recruit_committed_to.py,sha256=_U7X1XcIfG19B1hIL-hOFg9cR2__xG14pEZPegJdKQc,2864
58
+ cbbd/models/recruit_hometown.py,sha256=cRhUE9cEY8z8kQkD9X0rkQDaWUmrJXJfX5FrqUaq1aE,3902
59
+ cbbd/models/season_shooting_stats.py,sha256=W-LmeQAi8_9Eyf0PKlOvTOdG3csAHrrmQ_GKhAE7uZ8,6206
60
+ cbbd/models/season_shooting_stats_attempts_breakdown.py,sha256=G-ouyLNBogWl3u1teHmACWFac6t-nWKyy7rVzpEB8a8,2834
61
+ cbbd/models/season_shooting_stats_dunks.py,sha256=Ad-44dP7B4LgYfHYU9NbM9cAWAC1z7qXITAg-ol9ky0,2551
62
+ cbbd/models/season_type.py,sha256=Zm-ivtLWxFSl4q6lDBF118rOpnOnAb9ORo1rAslftrU,889
63
+ cbbd/models/shooting_stats.py,sha256=8DglrCmLjVjREbSJwlHA9xFwZkpFLE3gQUqjmUTedXU,2212
64
+ cbbd/models/shot_info.py,sha256=27J0zL_z0s3EY_BOL-d4FHhG8-dqNjfCEz0ckTyJXzc,3632
65
+ cbbd/models/shot_info_location.py,sha256=kYZfETAxm-9qaDzeCRv3hqHVi21CSuCZgITs5WikBj4,2534
66
+ cbbd/models/shot_info_shooter.py,sha256=6_QKvbSd4pFFKHlVbnh9GCmlpU6s2qwC39Nie2CsMlE,2509
67
+ cbbd/models/shot_type_breakdown.py,sha256=KSZtoZM55_amlR6Lkq3q9uhdVUKfkFNhwCZECw3Onmo,2244
68
+ cbbd/models/srs_info.py,sha256=XfZR3ID4IQ-Mfc1uw-2bFCeA9HYidqd8CLgUNP4Od1w,2389
69
+ cbbd/models/team_info.py,sha256=h6773ZXNg11AaVFz6vokvnVQcXMrOuPULv0-gepVHqs,6660
70
+ cbbd/models/team_roster.py,sha256=9eCoOBcKRvuV63ktQ3CKQNE8CsNrwMnXR1pAVQ_OPQ8,3289
71
+ cbbd/models/team_roster_player.py,sha256=qafquUIvkXnw-y-32i1RCju18xwg5TAwYh3nRJRLyIY,5348
72
+ cbbd/models/team_roster_player_hometown.py,sha256=QxiA7KCczVCqqAarDCDa_7KVng2KzUlrQ0C0lfhNino,3974
73
+ cbbd/models/team_season_stats.py,sha256=JL85Bf1438W1pzsk0T7jigbxTYNbuXo65xiMu3WugrQ,4601
74
+ cbbd/models/team_season_unit_stats.py,sha256=iRS5S7WSg4RD7dsbfo3Sid8vsRPNSsWRzhkEIwlBbZA,8281
75
+ cbbd/models/team_season_unit_stats_field_goals.py,sha256=No1fDBsp7zgGbiOU8mf5UfTtzxpDFy-sloZgt4R7Kd8,3021
76
+ cbbd/models/team_season_unit_stats_fouls.py,sha256=B5ew12Y5v9L1iszuHu55dSXJcKV7L-AJM95wJ2Z5DFs,3029
77
+ cbbd/models/team_season_unit_stats_four_factors.py,sha256=c74ozjkVJvlDX-Oq0bLt6Wy0QMikWayb2mnPe-d29H4,3878
78
+ cbbd/models/team_season_unit_stats_points.py,sha256=4pOL5vEASl7Grfw0tU2IQ4wqlHunvxIRf1D3JAUEfOk,3493
79
+ cbbd/models/team_season_unit_stats_rebounds.py,sha256=jNtR2g_SriYsebWxt7j9xm5k_c5xzi-89gca9jAzbHA,3061
80
+ cbbd/models/team_season_unit_stats_turnovers.py,sha256=inGBKiCjR0YiWx35jykEhgMqxpgm5sKneHei5ffjOFY,2758
81
+ cbbd/models/venue_info.py,sha256=4tJh7mVetNf5Y-VU5rirqlEWYl2ImNllDuFr6mUOvYw,3326
82
+ cbbd-1.21.1.dist-info/METADATA,sha256=4WBye9fQ0fIsdeaaL_up5o7VavyN7390Db11F2F6Eeg,758
83
+ cbbd-1.21.1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
84
+ cbbd-1.21.1.dist-info/top_level.txt,sha256=d8efSEMxRPpV_X-2jtQvf9S-EI4HoFQpCEOZCjDxT24,5
85
+ cbbd-1.21.1.dist-info/RECORD,,
@@ -1,85 +0,0 @@
1
- cbbd/__init__.py,sha256=FEhD5A9XZOXhghdjHDAUS7Px_FT0vzSOf16fgJrqfS0,5331
2
- cbbd/api_client.py,sha256=e5c5qfqqNNW8W76Mo3aSwphJVoEJUXX6shKv0hcvU9I,29897
3
- cbbd/api_response.py,sha256=uCehWdXXDnAO2HAHGKe0SgpQ_mJiGDbcu-BHDF3n_IM,852
4
- cbbd/configuration.py,sha256=jUe-LH0iUNkBSRXigQlvHp9rlAkawc65ylJhNVM9GYY,14793
5
- cbbd/exceptions.py,sha256=MsQa6vXcRAXyzTh-DKdHfzLPXiigOLylppcei4JY0v0,5540
6
- cbbd/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
7
- cbbd/rest.py,sha256=ZPmbQj_L6fURM31InwB3gytEPYbazLv95X_J4CmpWAs,14157
8
- cbbd/api/__init__.py,sha256=BG9pqmB2-l6ByYSh1FXjVHzeEqmvxQgr_MWR1z2NKrg,566
9
- cbbd/api/conferences_api.py,sha256=C6EEMsr73QoEbHeqnk5AaMT9FFOafx7yPlzrfmGrLk8,13073
10
- cbbd/api/draft_api.py,sha256=5KSaOkZQUQCkJIAMwabuvEHdyqhy5rsGpvZ_Qp1P5qM,20203
11
- cbbd/api/games_api.py,sha256=Jym3YSRDsytLm92N2Q9BAwHaryei59rWxsUl5PKZiho,43817
12
- cbbd/api/lines_api.py,sha256=SQ38xfgljKEGkqrjlGRlADV9AzEnxx1XDP43cei1Z4k,15881
13
- cbbd/api/lineups_api.py,sha256=gxzzRG5vsZsyg-whbBkotw0n7hQR1EtNnPJUk7rQbG0,15742
14
- cbbd/api/plays_api.py,sha256=FifigtcvYUX_vRHqmysHYxO2gwxaiwyM6wZm_jNZPOU,62477
15
- cbbd/api/rankings_api.py,sha256=GY3JxrxV9-seUWVn7V3NIS3HZM9xSA_cDIL_PKw0M6Y,9999
16
- cbbd/api/ratings_api.py,sha256=klAgfnGjRAF-j8k8WiIBB58Xsjk12HVbkB49l-Tbl9o,15673
17
- cbbd/api/recruiting_api.py,sha256=9nOXep_Oib1KBjfF_GeRguwpEe4bBPdppGGQwUhyn4U,8852
18
- cbbd/api/stats_api.py,sha256=cAHRe4dC_WyhC4hV4O_W_8h0X64J54J7r5URJZCRRRM,40166
19
- cbbd/api/teams_api.py,sha256=wkLKNQyM93D9qcx-921cLp6WaxvZOgm8kmf_4K-FChc,14202
20
- cbbd/api/venues_api.py,sha256=4K3Mv92Zb3F2Mf1EtV_iAR3RtkF6TtqA4ri5ItfWhqs,6562
21
- cbbd/models/__init__.py,sha256=zpRI3RYs0egu-ggT5M7HasgJk9mcU4MplaMR7ZeWmgQ,4358
22
- cbbd/models/adjusted_efficiency_info.py,sha256=H49zq9mLcA03s3NTmX3Qs5YSUDXWrAg_R__4Wfc1n-A,3364
23
- cbbd/models/adjusted_efficiency_info_rankings.py,sha256=eABqBiQuKDt54ZbVOpyG2A5BE477-nJZdODVRM3CSac,2392
24
- cbbd/models/conference_history.py,sha256=UpFgOCk5gzzlJ6PIr56gLxmZgZBWqaK1KRjzfUWXYYg,3078
25
- cbbd/models/conference_history_teams_inner.py,sha256=B0SiCkJiP6HJjGxTEj8gdFRSw2J27Qf7-sewLbeevuk,3124
26
- cbbd/models/conference_info.py,sha256=dFCBHgNgjwvD1Nk0-Qm5MTc_VgiXGeErJ83sX2dTEho,2431
27
- cbbd/models/draft_pick.py,sha256=6MT-EGo7-tWVnJWXeSk1S8S1IeAfIrbB8o7_sD5E7lM,6566
28
- cbbd/models/draft_position.py,sha256=DDwldl-s5qH1oCUyQ929pga12WtnZjKSmNerIbNgUXc,2093
29
- cbbd/models/draft_team.py,sha256=4Fj5kY2v8GodbeiYGBb1MBdoOLUyZlTQfHplfl3Vhq8,2552
30
- cbbd/models/game_box_score_players.py,sha256=ODd3xrOfHUIY9dBJ_2r4GJjCXTjLpPLNmsbTe199rXc,7522
31
- cbbd/models/game_box_score_players_players_inner.py,sha256=dZ2xA7KjjR2TGkZSWTsh1uzW1juonFMXBtioPpVxX30,12087
32
- cbbd/models/game_box_score_team.py,sha256=qg0f0SjZxffEV3mk3hGZboPd2r2Ar9UxyiIADP-v4do,7693
33
- cbbd/models/game_box_score_team_stats.py,sha256=8glBmuyRvHEEXa1RxbgCl3dJZjUUTJ-_3pwrDGjKg-k,8681
34
- cbbd/models/game_box_score_team_stats_points.py,sha256=iJmqQKFThNhw82cATR1vrAnhJ11UqwqosQHjW8M4cfA,4292
35
- cbbd/models/game_info.py,sha256=6IWQfzJuR-6fgKe41B1rLo15JIBaNC9QjU2ncB6E5l0,11358
36
- cbbd/models/game_line_info.py,sha256=9vlubqQVSrS5sKayY9dUToIYcIU5Jpb9QsoyRSy9LJU,4365
37
- cbbd/models/game_lines.py,sha256=-Ah2ir0HdOwEEOrfchFeQaHyFqzJa8wTgaLrSZPhwD0,5071
38
- cbbd/models/game_media_info.py,sha256=bL9sMLZAtXrRCLoIzsDebIv3SzMvWNiZ4q87HBgvjMI,5997
39
- cbbd/models/game_media_info_broadcasts_inner.py,sha256=P-LkJPJAbjvnyTo1phqGTKIzJOoV7jzr0s7DukxeNkQ,2319
40
- cbbd/models/game_status.py,sha256=KeQq0G75Tm0VWsTiMHNPeRij1aPA1h69mn1OD0ZxPkw,943
41
- cbbd/models/line_provider_info.py,sha256=M43ol1sboQIj_OGPAdqk9y3tMqyFt4x-8yFwHzkX-ug,2088
42
- cbbd/models/lineup_stats.py,sha256=QizN3h78W4Qojx4G83hXfn5jLLhqWDu08zGalvegsWk,4569
43
- cbbd/models/lineup_unit_stats.py,sha256=mCaxheXRPihiXxovbjJNjR6_vWOzJzvH48lItdidvcI,5265
44
- cbbd/models/lineup_unit_stats_four_factors.py,sha256=cZn8FJ079M1FATADvJEXaVu_BD7IRKR4QGTgcubOI3U,2792
45
- cbbd/models/lineup_unit_stats_two_pointers.py,sha256=c0hFQ2UnVzx2w9nQ4qkxbwXU2adWI0ten6panVqHosA,3674
46
- cbbd/models/play_info.py,sha256=QyvOYTOQ4EWmFHYMEWn4O3YuZxZO4YIWbw-tJHuQ4HM,11368
47
- cbbd/models/play_info_on_floor_inner.py,sha256=bNgg_QpAmdD4Mo_tWP6WIXt7jYaO44Han9-3DC6JsdE,2198
48
- cbbd/models/play_info_participants_inner.py,sha256=mBkEgV7Hd4D_ssg7rrnROVzOGM35fIwX9UU19O99jXI,2160
49
- cbbd/models/play_type_info.py,sha256=TS0fAjIDbcRLRQvGO82jpY3g-nEG-XIhNFAQ_gA7ScE,2056
50
- cbbd/models/player_season_shooting_stats.py,sha256=8-s8UInk2pEiMVxm17TpdHwNv-bqHyIzCtcq8-shcmI,6518
51
- cbbd/models/player_season_stats.py,sha256=Wk0PzR0JDD7c79LXCEIeJHc_rEXllumOvB7PGhvWa3c,12536
52
- cbbd/models/player_season_stats_win_shares.py,sha256=5op1Q9cSKnUjaZdfMORtJz2ISZY-hqorok50B64_z60,3437
53
- cbbd/models/player_subsititution.py,sha256=xT4ql9hbvVSQBa8SEKKI3wELEmnLysBuEbQqwOzxL6k,4780
54
- cbbd/models/player_subsititution_sub_in.py,sha256=5YMWH7ZZNsIpBADeH3uiL50hOUVQ5oM3Qq_MS8rOCpI,2525
55
- cbbd/models/poll_team_info.py,sha256=8McjqmxQhEQ_VovmVQ-Du2bHJiIwakmP6aSxSEXrd1w,4416
56
- cbbd/models/recruit.py,sha256=tnOE-9RUITpIb1YJbW0gx4Suo5OCY-DZSVP46DG84_Q,6388
57
- cbbd/models/recruit_committed_to.py,sha256=KBMFiDmM721Aj398cu3VlkhoQcgmWOl_Aq9HPMkS08w,2864
58
- cbbd/models/recruit_hometown.py,sha256=tMxuWXeM3uHDZYlc87dssYwEUG-nmzr4zNhUMarjl3I,3902
59
- cbbd/models/season_shooting_stats.py,sha256=9m4Fce5lnTuLRXMYi7XcBCZEz6IERlZeSrIkwwN1JWs,6206
60
- cbbd/models/season_shooting_stats_attempts_breakdown.py,sha256=eZx59hqOISmvpGfX3oIkxQUM353PQlhtmLBgHVPp7No,2834
61
- cbbd/models/season_shooting_stats_dunks.py,sha256=zcS5WIMvVEcyoHMJeRp91jkZiBP1sx-HY_C-RrguwJw,2551
62
- cbbd/models/season_type.py,sha256=k_zEGCz28rqUxSLyq4G8ujehe9DVgJdpdlaI4E-VZhc,889
63
- cbbd/models/shooting_stats.py,sha256=IS7h_-pfl9J0luo8iEyAFpfdT-VKWJYJLlziJ7Dqe0U,2212
64
- cbbd/models/shot_info.py,sha256=C1gmkkQg9YR00Hv8Df4YRVmhsGB_uUSzPai90bq375c,3632
65
- cbbd/models/shot_info_location.py,sha256=emOr8SNtl_79Mz1A1mzp_WGw2ltE_XsYLDt_v93Jy_M,2534
66
- cbbd/models/shot_info_shooter.py,sha256=Xy9QXBHo9HuqMDYHPgrSB-h6VuP7SsNeh7f1GhXdESQ,2509
67
- cbbd/models/shot_type_breakdown.py,sha256=xJlQmnFUEHIqEHsGPZkIqE2TD3EOs4HsLHdWGpEL7L4,2244
68
- cbbd/models/srs_info.py,sha256=ulP6gNhN18yex8JnbKBajQt7nSmXMijgg3u7QKft89I,2389
69
- cbbd/models/team_info.py,sha256=CSqryJ4_bTYusX-u-RqBwmih3ERJFnELAjGtwqIk6U0,6660
70
- cbbd/models/team_roster.py,sha256=icY7QrAUD-cD6QNg12J76jqLQPpGgIqWWrnvnd4bMMk,3289
71
- cbbd/models/team_roster_player.py,sha256=MQXbUPO7HrGl1EPt2pJ48KjhXMj4meIqWKsNLlk2gkE,5348
72
- cbbd/models/team_roster_player_hometown.py,sha256=KehGdoz4QR0fRyevqpGCuEP4YRle58M1ek6SCybsWwc,3974
73
- cbbd/models/team_season_stats.py,sha256=2pBLFJjMY2OZucCz8w40wCVvNUyyPyakB6OGPW3303I,4601
74
- cbbd/models/team_season_unit_stats.py,sha256=_DleH0wey-rZ4qB0jAPO8qqgVhFDwstrDfIBRw06BXs,8281
75
- cbbd/models/team_season_unit_stats_field_goals.py,sha256=tpLen1I-O3floxYJhH8hdPsHgQfPIw50rRMd_Qvy7hc,3021
76
- cbbd/models/team_season_unit_stats_fouls.py,sha256=OYVnrrrFbUhJk5DtxUZECmjCQ8Yz15pzcidqRzLhQy4,3029
77
- cbbd/models/team_season_unit_stats_four_factors.py,sha256=LZLXkL7frxMR0Bn13kI3KYWPUEp1qDwy8EPLeLd6pxk,3878
78
- cbbd/models/team_season_unit_stats_points.py,sha256=ijCJZJ690RgVYIHp1o5_SGuyDArUnfp9cxTYKd7kz74,3493
79
- cbbd/models/team_season_unit_stats_rebounds.py,sha256=sTrG2XwDGKDd8MsoZVX_H7rULjavRIwmL79lFg96rno,3061
80
- cbbd/models/team_season_unit_stats_turnovers.py,sha256=4CPDP0RQjumc6xkg8yH9IWc1Aqgth3-wD1LhfY_oNEY,2758
81
- cbbd/models/venue_info.py,sha256=jzWVExIItDSUD6sZituYuG2qcXQNlLLKrqyszsf0ASo,3326
82
- cbbd-1.21.0.dist-info/METADATA,sha256=SMrD7aObLJPT0WetWJWTS22tsLKsjXqnhf7cLp0z3dU,758
83
- cbbd-1.21.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
84
- cbbd-1.21.0.dist-info/top_level.txt,sha256=d8efSEMxRPpV_X-2jtQvf9S-EI4HoFQpCEOZCjDxT24,5
85
- cbbd-1.21.0.dist-info/RECORD,,
File without changes