cbbd 1.14.0__py3-none-any.whl → 1.15.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 (69) 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/plays_api.py +1 -1
  7. cbbd/api/rankings_api.py +1 -1
  8. cbbd/api/ratings_api.py +1 -1
  9. cbbd/api/recruiting_api.py +1 -1
  10. cbbd/api/stats_api.py +1 -1
  11. cbbd/api/teams_api.py +1 -1
  12. cbbd/api/venues_api.py +1 -1
  13. cbbd/api_client.py +2 -2
  14. cbbd/configuration.py +3 -3
  15. cbbd/exceptions.py +1 -1
  16. cbbd/models/__init__.py +1 -1
  17. cbbd/models/adjusted_efficiency_info.py +1 -1
  18. cbbd/models/adjusted_efficiency_info_rankings.py +1 -1
  19. cbbd/models/conference_history.py +1 -1
  20. cbbd/models/conference_history_teams_inner.py +1 -1
  21. cbbd/models/conference_info.py +1 -1
  22. cbbd/models/draft_pick.py +1 -1
  23. cbbd/models/draft_position.py +1 -1
  24. cbbd/models/draft_team.py +1 -1
  25. cbbd/models/game_box_score_players.py +1 -1
  26. cbbd/models/game_box_score_players_players_inner.py +1 -1
  27. cbbd/models/game_box_score_team.py +1 -1
  28. cbbd/models/game_box_score_team_stats.py +1 -1
  29. cbbd/models/game_box_score_team_stats_points.py +1 -1
  30. cbbd/models/game_info.py +1 -1
  31. cbbd/models/game_line_info.py +1 -1
  32. cbbd/models/game_lines.py +1 -1
  33. cbbd/models/game_media_info.py +1 -1
  34. cbbd/models/game_media_info_broadcasts_inner.py +1 -1
  35. cbbd/models/game_status.py +1 -1
  36. cbbd/models/line_provider_info.py +1 -1
  37. cbbd/models/play_info.py +1 -1
  38. cbbd/models/play_info_participants_inner.py +1 -1
  39. cbbd/models/play_type_info.py +1 -1
  40. cbbd/models/player_season_stats.py +1 -1
  41. cbbd/models/player_season_stats_win_shares.py +1 -1
  42. cbbd/models/poll_team_info.py +1 -1
  43. cbbd/models/recruit.py +1 -1
  44. cbbd/models/recruit_committed_to.py +1 -1
  45. cbbd/models/recruit_hometown.py +25 -4
  46. cbbd/models/season_type.py +1 -1
  47. cbbd/models/shot_info.py +1 -1
  48. cbbd/models/shot_info_location.py +1 -1
  49. cbbd/models/shot_info_shooter.py +1 -1
  50. cbbd/models/srs_info.py +1 -1
  51. cbbd/models/team_info.py +1 -1
  52. cbbd/models/team_roster.py +1 -1
  53. cbbd/models/team_roster_player.py +1 -1
  54. cbbd/models/team_roster_player_hometown.py +25 -4
  55. cbbd/models/team_season_stats.py +1 -1
  56. cbbd/models/team_season_unit_stats.py +1 -1
  57. cbbd/models/team_season_unit_stats_field_goals.py +1 -1
  58. cbbd/models/team_season_unit_stats_fouls.py +1 -1
  59. cbbd/models/team_season_unit_stats_four_factors.py +1 -1
  60. cbbd/models/team_season_unit_stats_points.py +1 -1
  61. cbbd/models/team_season_unit_stats_rebounds.py +1 -1
  62. cbbd/models/team_season_unit_stats_turnovers.py +1 -1
  63. cbbd/models/venue_info.py +1 -1
  64. cbbd/rest.py +1 -1
  65. {cbbd-1.14.0.dist-info → cbbd-1.15.1.dist-info}/METADATA +1 -1
  66. cbbd-1.15.1.dist-info/RECORD +71 -0
  67. cbbd-1.14.0.dist-info/RECORD +0 -71
  68. {cbbd-1.14.0.dist-info → cbbd-1.15.1.dist-info}/WHEEL +0 -0
  69. {cbbd-1.14.0.dist-info → cbbd-1.15.1.dist-info}/top_level.txt +0 -0
cbbd/__init__.py CHANGED
@@ -7,7 +7,7 @@
7
7
 
8
8
  This API is in limited Beta for Patreon subscribers. It may have bugs and is subject to changes. API keys can be acquired from the CollegeFootballData.com website.
9
9
 
10
- The version of the OpenAPI document: 1.14.0
10
+ The version of the OpenAPI document: 1.15.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.14.0"
18
+ __version__ = "1.15.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 API is in limited Beta for Patreon subscribers. It may have bugs and is subject to changes. API keys can be acquired from the CollegeFootballData.com website.
7
7
 
8
- The version of the OpenAPI document: 1.14.0
8
+ The version of the OpenAPI document: 1.15.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 API is in limited Beta for Patreon subscribers. It may have bugs and is subject to changes. API keys can be acquired from the CollegeFootballData.com website.
7
7
 
8
- The version of the OpenAPI document: 1.14.0
8
+ The version of the OpenAPI document: 1.15.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 API is in limited Beta for Patreon subscribers. It may have bugs and is subject to changes. API keys can be acquired from the CollegeFootballData.com website.
7
7
 
8
- The version of the OpenAPI document: 1.14.0
8
+ The version of the OpenAPI document: 1.15.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 API is in limited Beta for Patreon subscribers. It may have bugs and is subject to changes. API keys can be acquired from the CollegeFootballData.com website.
7
7
 
8
- The version of the OpenAPI document: 1.14.0
8
+ The version of the OpenAPI document: 1.15.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 API is in limited Beta for Patreon subscribers. It may have bugs and is subject to changes. API keys can be acquired from the CollegeFootballData.com website.
7
7
 
8
- The version of the OpenAPI document: 1.14.0
8
+ The version of the OpenAPI document: 1.15.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 API is in limited Beta for Patreon subscribers. It may have bugs and is subject to changes. API keys can be acquired from the CollegeFootballData.com website.
7
7
 
8
- The version of the OpenAPI document: 1.14.0
8
+ The version of the OpenAPI document: 1.15.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 API is in limited Beta for Patreon subscribers. It may have bugs and is subject to changes. API keys can be acquired from the CollegeFootballData.com website.
7
7
 
8
- The version of the OpenAPI document: 1.14.0
8
+ The version of the OpenAPI document: 1.15.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 API is in limited Beta for Patreon subscribers. It may have bugs and is subject to changes. API keys can be acquired from the CollegeFootballData.com website.
7
7
 
8
- The version of the OpenAPI document: 1.14.0
8
+ The version of the OpenAPI document: 1.15.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 API is in limited Beta for Patreon subscribers. It may have bugs and is subject to changes. API keys can be acquired from the CollegeFootballData.com website.
7
7
 
8
- The version of the OpenAPI document: 1.14.0
8
+ The version of the OpenAPI document: 1.15.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 API is in limited Beta for Patreon subscribers. It may have bugs and is subject to changes. API keys can be acquired from the CollegeFootballData.com website.
7
7
 
8
- The version of the OpenAPI document: 1.14.0
8
+ The version of the OpenAPI document: 1.15.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 API is in limited Beta for Patreon subscribers. It may have bugs and is subject to changes. API keys can be acquired from the CollegeFootballData.com website.
7
7
 
8
- The version of the OpenAPI document: 1.14.0
8
+ The version of the OpenAPI document: 1.15.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 API is in limited Beta for Patreon subscribers. It may have bugs and is subject to changes. API keys can be acquired from the CollegeFootballData.com website.
7
7
 
8
- The version of the OpenAPI document: 1.14.0
8
+ The version of the OpenAPI document: 1.15.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.14.0/python'
81
+ self.user_agent = 'OpenAPI-Generator/1.15.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 API is in limited Beta for Patreon subscribers. It may have bugs and is subject to changes. API keys can be acquired from the CollegeFootballData.com website.
7
7
 
8
- The version of the OpenAPI document: 1.14.0
8
+ The version of the OpenAPI document: 1.15.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.14.0\n"\
380
- "SDK Package Version: 1.14.0".\
379
+ "Version of the API: 1.15.1\n"\
380
+ "SDK Package Version: 1.15.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 API is in limited Beta for Patreon subscribers. It may have bugs and is subject to changes. API keys can be acquired from the CollegeFootballData.com website.
7
7
 
8
- The version of the OpenAPI document: 1.14.0
8
+ The version of the OpenAPI document: 1.15.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 API is in limited Beta for Patreon subscribers. It may have bugs and is subject to changes. API keys can be acquired from the CollegeFootballData.com website.
8
8
 
9
- The version of the OpenAPI document: 1.14.0
9
+ The version of the OpenAPI document: 1.15.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 API is in limited Beta for Patreon subscribers. It may have bugs and is subject to changes. API keys can be acquired from the CollegeFootballData.com website.
7
7
 
8
- The version of the OpenAPI document: 1.14.0
8
+ The version of the OpenAPI document: 1.15.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 API is in limited Beta for Patreon subscribers. It may have bugs and is subject to changes. API keys can be acquired from the CollegeFootballData.com website.
7
7
 
8
- The version of the OpenAPI document: 1.14.0
8
+ The version of the OpenAPI document: 1.15.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 API is in limited Beta for Patreon subscribers. It may have bugs and is subject to changes. API keys can be acquired from the CollegeFootballData.com website.
7
7
 
8
- The version of the OpenAPI document: 1.14.0
8
+ The version of the OpenAPI document: 1.15.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 API is in limited Beta for Patreon subscribers. It may have bugs and is subject to changes. API keys can be acquired from the CollegeFootballData.com website.
7
7
 
8
- The version of the OpenAPI document: 1.14.0
8
+ The version of the OpenAPI document: 1.15.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 API is in limited Beta for Patreon subscribers. It may have bugs and is subject to changes. API keys can be acquired from the CollegeFootballData.com website.
7
7
 
8
- The version of the OpenAPI document: 1.14.0
8
+ The version of the OpenAPI document: 1.15.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 API is in limited Beta for Patreon subscribers. It may have bugs and is subject to changes. API keys can be acquired from the CollegeFootballData.com website.
7
7
 
8
- The version of the OpenAPI document: 1.14.0
8
+ The version of the OpenAPI document: 1.15.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 API is in limited Beta for Patreon subscribers. It may have bugs and is subject to changes. API keys can be acquired from the CollegeFootballData.com website.
7
7
 
8
- The version of the OpenAPI document: 1.14.0
8
+ The version of the OpenAPI document: 1.15.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 API is in limited Beta for Patreon subscribers. It may have bugs and is subject to changes. API keys can be acquired from the CollegeFootballData.com website.
7
7
 
8
- The version of the OpenAPI document: 1.14.0
8
+ The version of the OpenAPI document: 1.15.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 API is in limited Beta for Patreon subscribers. It may have bugs and is subject to changes. API keys can be acquired from the CollegeFootballData.com website.
7
7
 
8
- The version of the OpenAPI document: 1.14.0
8
+ The version of the OpenAPI document: 1.15.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 API is in limited Beta for Patreon subscribers. It may have bugs and is subject to changes. API keys can be acquired from the CollegeFootballData.com website.
7
7
 
8
- The version of the OpenAPI document: 1.14.0
8
+ The version of the OpenAPI document: 1.15.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 API is in limited Beta for Patreon subscribers. It may have bugs and is subject to changes. API keys can be acquired from the CollegeFootballData.com website.
7
7
 
8
- The version of the OpenAPI document: 1.14.0
8
+ The version of the OpenAPI document: 1.15.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 API is in limited Beta for Patreon subscribers. It may have bugs and is subject to changes. API keys can be acquired from the CollegeFootballData.com website.
7
7
 
8
- The version of the OpenAPI document: 1.14.0
8
+ The version of the OpenAPI document: 1.15.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 API is in limited Beta for Patreon subscribers. It may have bugs and is subject to changes. API keys can be acquired from the CollegeFootballData.com website.
7
7
 
8
- The version of the OpenAPI document: 1.14.0
8
+ The version of the OpenAPI document: 1.15.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 API is in limited Beta for Patreon subscribers. It may have bugs and is subject to changes. API keys can be acquired from the CollegeFootballData.com website.
7
7
 
8
- The version of the OpenAPI document: 1.14.0
8
+ The version of the OpenAPI document: 1.15.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 API is in limited Beta for Patreon subscribers. It may have bugs and is subject to changes. API keys can be acquired from the CollegeFootballData.com website.
7
7
 
8
- The version of the OpenAPI document: 1.14.0
8
+ The version of the OpenAPI document: 1.15.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 API is in limited Beta for Patreon subscribers. It may have bugs and is subject to changes. API keys can be acquired from the CollegeFootballData.com website.
7
7
 
8
- The version of the OpenAPI document: 1.14.0
8
+ The version of the OpenAPI document: 1.15.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 API is in limited Beta for Patreon subscribers. It may have bugs and is subject to changes. API keys can be acquired from the CollegeFootballData.com website.
7
7
 
8
- The version of the OpenAPI document: 1.14.0
8
+ The version of the OpenAPI document: 1.15.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 API is in limited Beta for Patreon subscribers. It may have bugs and is subject to changes. API keys can be acquired from the CollegeFootballData.com website.
7
7
 
8
- The version of the OpenAPI document: 1.14.0
8
+ The version of the OpenAPI document: 1.15.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 API is in limited Beta for Patreon subscribers. It may have bugs and is subject to changes. API keys can be acquired from the CollegeFootballData.com website.
7
7
 
8
- The version of the OpenAPI document: 1.14.0
8
+ The version of the OpenAPI document: 1.15.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 API is in limited Beta for Patreon subscribers. It may have bugs and is subject to changes. API keys can be acquired from the CollegeFootballData.com website.
7
7
 
8
- The version of the OpenAPI document: 1.14.0
8
+ The version of the OpenAPI document: 1.15.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 API is in limited Beta for Patreon subscribers. It may have bugs and is subject to changes. API keys can be acquired from the CollegeFootballData.com website.
7
7
 
8
- The version of the OpenAPI document: 1.14.0
8
+ The version of the OpenAPI document: 1.15.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 API is in limited Beta for Patreon subscribers. It may have bugs and is subject to changes. API keys can be acquired from the CollegeFootballData.com website.
7
7
 
8
- The version of the OpenAPI document: 1.14.0
8
+ The version of the OpenAPI document: 1.15.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 API is in limited Beta for Patreon subscribers. It may have bugs and is subject to changes. API keys can be acquired from the CollegeFootballData.com website.
7
7
 
8
- The version of the OpenAPI document: 1.14.0
8
+ The version of the OpenAPI document: 1.15.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 API is in limited Beta for Patreon subscribers. It may have bugs and is subject to changes. API keys can be acquired from the CollegeFootballData.com website.
7
7
 
8
- The version of the OpenAPI document: 1.14.0
8
+ The version of the OpenAPI document: 1.15.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 API is in limited Beta for Patreon subscribers. It may have bugs and is subject to changes. API keys can be acquired from the CollegeFootballData.com website.
7
7
 
8
- The version of the OpenAPI document: 1.14.0
8
+ The version of the OpenAPI document: 1.15.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 API is in limited Beta for Patreon subscribers. It may have bugs and is subject to changes. API keys can be acquired from the CollegeFootballData.com website.
7
7
 
8
- The version of the OpenAPI document: 1.14.0
8
+ The version of the OpenAPI document: 1.15.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 API is in limited Beta for Patreon subscribers. It may have bugs and is subject to changes. API keys can be acquired from the CollegeFootballData.com website.
7
7
 
8
- The version of the OpenAPI document: 1.14.0
8
+ The version of the OpenAPI document: 1.15.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 API is in limited Beta for Patreon subscribers. It may have bugs and is subject to changes. API keys can be acquired from the CollegeFootballData.com website.
7
7
 
8
- The version of the OpenAPI document: 1.14.0
8
+ The version of the OpenAPI document: 1.15.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 API is in limited Beta for Patreon subscribers. It may have bugs and is subject to changes. API keys can be acquired from the CollegeFootballData.com website.
7
7
 
8
- The version of the OpenAPI document: 1.14.0
8
+ The version of the OpenAPI document: 1.15.1
9
9
  Contact: admin@collegefootballdata.com
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -19,17 +19,20 @@ import re # noqa: F401
19
19
  import json
20
20
 
21
21
 
22
- from typing import Optional
23
- from pydantic import BaseModel, Field, StrictStr
22
+ from typing import Optional, Union
23
+ from pydantic import BaseModel, Field, StrictFloat, StrictInt, StrictStr
24
24
 
25
25
  class RecruitHometown(BaseModel):
26
26
  """
27
27
  RecruitHometown
28
28
  """
29
+ county_fips: Optional[StrictStr] = Field(default=..., alias="countyFips")
30
+ longitude: Optional[Union[StrictFloat, StrictInt]] = Field(...)
31
+ latitude: Optional[Union[StrictFloat, StrictInt]] = Field(...)
29
32
  country: Optional[StrictStr] = Field(...)
30
33
  state: Optional[StrictStr] = Field(...)
31
34
  city: Optional[StrictStr] = Field(...)
32
- __properties = ["country", "state", "city"]
35
+ __properties = ["countyFips", "longitude", "latitude", "country", "state", "city"]
33
36
 
34
37
  class Config:
35
38
  """Pydantic configuration"""
@@ -55,6 +58,21 @@ class RecruitHometown(BaseModel):
55
58
  exclude={
56
59
  },
57
60
  exclude_none=True)
61
+ # set to None if county_fips (nullable) is None
62
+ # and __fields_set__ contains the field
63
+ if self.county_fips is None and "county_fips" in self.__fields_set__:
64
+ _dict['countyFips'] = None
65
+
66
+ # set to None if longitude (nullable) is None
67
+ # and __fields_set__ contains the field
68
+ if self.longitude is None and "longitude" in self.__fields_set__:
69
+ _dict['longitude'] = None
70
+
71
+ # set to None if latitude (nullable) is None
72
+ # and __fields_set__ contains the field
73
+ if self.latitude is None and "latitude" in self.__fields_set__:
74
+ _dict['latitude'] = None
75
+
58
76
  # set to None if country (nullable) is None
59
77
  # and __fields_set__ contains the field
60
78
  if self.country is None and "country" in self.__fields_set__:
@@ -82,6 +100,9 @@ class RecruitHometown(BaseModel):
82
100
  return RecruitHometown.parse_obj(obj)
83
101
 
84
102
  _obj = RecruitHometown.parse_obj({
103
+ "county_fips": obj.get("countyFips"),
104
+ "longitude": obj.get("longitude"),
105
+ "latitude": obj.get("latitude"),
85
106
  "country": obj.get("country"),
86
107
  "state": obj.get("state"),
87
108
  "city": obj.get("city")
@@ -5,7 +5,7 @@
5
5
 
6
6
  This API is in limited Beta for Patreon subscribers. It may have bugs and is subject to changes. API keys can be acquired from the CollegeFootballData.com website.
7
7
 
8
- The version of the OpenAPI document: 1.14.0
8
+ The version of the OpenAPI document: 1.15.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 API is in limited Beta for Patreon subscribers. It may have bugs and is subject to changes. API keys can be acquired from the CollegeFootballData.com website.
7
7
 
8
- The version of the OpenAPI document: 1.14.0
8
+ The version of the OpenAPI document: 1.15.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 API is in limited Beta for Patreon subscribers. It may have bugs and is subject to changes. API keys can be acquired from the CollegeFootballData.com website.
7
7
 
8
- The version of the OpenAPI document: 1.14.0
8
+ The version of the OpenAPI document: 1.15.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 API is in limited Beta for Patreon subscribers. It may have bugs and is subject to changes. API keys can be acquired from the CollegeFootballData.com website.
7
7
 
8
- The version of the OpenAPI document: 1.14.0
8
+ The version of the OpenAPI document: 1.15.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 API is in limited Beta for Patreon subscribers. It may have bugs and is subject to changes. API keys can be acquired from the CollegeFootballData.com website.
7
7
 
8
- The version of the OpenAPI document: 1.14.0
8
+ The version of the OpenAPI document: 1.15.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 API is in limited Beta for Patreon subscribers. It may have bugs and is subject to changes. API keys can be acquired from the CollegeFootballData.com website.
7
7
 
8
- The version of the OpenAPI document: 1.14.0
8
+ The version of the OpenAPI document: 1.15.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 API is in limited Beta for Patreon subscribers. It may have bugs and is subject to changes. API keys can be acquired from the CollegeFootballData.com website.
7
7
 
8
- The version of the OpenAPI document: 1.14.0
8
+ The version of the OpenAPI document: 1.15.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 API is in limited Beta for Patreon subscribers. It may have bugs and is subject to changes. API keys can be acquired from the CollegeFootballData.com website.
7
7
 
8
- The version of the OpenAPI document: 1.14.0
8
+ The version of the OpenAPI document: 1.15.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 API is in limited Beta for Patreon subscribers. It may have bugs and is subject to changes. API keys can be acquired from the CollegeFootballData.com website.
7
7
 
8
- The version of the OpenAPI document: 1.14.0
8
+ The version of the OpenAPI document: 1.15.1
9
9
  Contact: admin@collegefootballdata.com
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -19,17 +19,20 @@ import re # noqa: F401
19
19
  import json
20
20
 
21
21
 
22
- from typing import Optional
23
- from pydantic import BaseModel, Field, StrictStr
22
+ from typing import Optional, Union
23
+ from pydantic import BaseModel, Field, StrictFloat, StrictInt, StrictStr
24
24
 
25
25
  class TeamRosterPlayerHometown(BaseModel):
26
26
  """
27
27
  TeamRosterPlayerHometown
28
28
  """
29
+ county_fips: Optional[StrictStr] = Field(default=..., alias="countyFips")
30
+ longitude: Optional[Union[StrictFloat, StrictInt]] = Field(...)
31
+ latitude: Optional[Union[StrictFloat, StrictInt]] = Field(...)
29
32
  country: Optional[StrictStr] = Field(...)
30
33
  state: Optional[StrictStr] = Field(...)
31
34
  city: Optional[StrictStr] = Field(...)
32
- __properties = ["country", "state", "city"]
35
+ __properties = ["countyFips", "longitude", "latitude", "country", "state", "city"]
33
36
 
34
37
  class Config:
35
38
  """Pydantic configuration"""
@@ -55,6 +58,21 @@ class TeamRosterPlayerHometown(BaseModel):
55
58
  exclude={
56
59
  },
57
60
  exclude_none=True)
61
+ # set to None if county_fips (nullable) is None
62
+ # and __fields_set__ contains the field
63
+ if self.county_fips is None and "county_fips" in self.__fields_set__:
64
+ _dict['countyFips'] = None
65
+
66
+ # set to None if longitude (nullable) is None
67
+ # and __fields_set__ contains the field
68
+ if self.longitude is None and "longitude" in self.__fields_set__:
69
+ _dict['longitude'] = None
70
+
71
+ # set to None if latitude (nullable) is None
72
+ # and __fields_set__ contains the field
73
+ if self.latitude is None and "latitude" in self.__fields_set__:
74
+ _dict['latitude'] = None
75
+
58
76
  # set to None if country (nullable) is None
59
77
  # and __fields_set__ contains the field
60
78
  if self.country is None and "country" in self.__fields_set__:
@@ -82,6 +100,9 @@ class TeamRosterPlayerHometown(BaseModel):
82
100
  return TeamRosterPlayerHometown.parse_obj(obj)
83
101
 
84
102
  _obj = TeamRosterPlayerHometown.parse_obj({
103
+ "county_fips": obj.get("countyFips"),
104
+ "longitude": obj.get("longitude"),
105
+ "latitude": obj.get("latitude"),
85
106
  "country": obj.get("country"),
86
107
  "state": obj.get("state"),
87
108
  "city": obj.get("city")
@@ -5,7 +5,7 @@
5
5
 
6
6
  This API is in limited Beta for Patreon subscribers. It may have bugs and is subject to changes. API keys can be acquired from the CollegeFootballData.com website.
7
7
 
8
- The version of the OpenAPI document: 1.14.0
8
+ The version of the OpenAPI document: 1.15.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 API is in limited Beta for Patreon subscribers. It may have bugs and is subject to changes. API keys can be acquired from the CollegeFootballData.com website.
7
7
 
8
- The version of the OpenAPI document: 1.14.0
8
+ The version of the OpenAPI document: 1.15.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 API is in limited Beta for Patreon subscribers. It may have bugs and is subject to changes. API keys can be acquired from the CollegeFootballData.com website.
7
7
 
8
- The version of the OpenAPI document: 1.14.0
8
+ The version of the OpenAPI document: 1.15.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 API is in limited Beta for Patreon subscribers. It may have bugs and is subject to changes. API keys can be acquired from the CollegeFootballData.com website.
7
7
 
8
- The version of the OpenAPI document: 1.14.0
8
+ The version of the OpenAPI document: 1.15.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 API is in limited Beta for Patreon subscribers. It may have bugs and is subject to changes. API keys can be acquired from the CollegeFootballData.com website.
7
7
 
8
- The version of the OpenAPI document: 1.14.0
8
+ The version of the OpenAPI document: 1.15.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 API is in limited Beta for Patreon subscribers. It may have bugs and is subject to changes. API keys can be acquired from the CollegeFootballData.com website.
7
7
 
8
- The version of the OpenAPI document: 1.14.0
8
+ The version of the OpenAPI document: 1.15.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 API is in limited Beta for Patreon subscribers. It may have bugs and is subject to changes. API keys can be acquired from the CollegeFootballData.com website.
7
7
 
8
- The version of the OpenAPI document: 1.14.0
8
+ The version of the OpenAPI document: 1.15.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 API is in limited Beta for Patreon subscribers. It may have bugs and is subject to changes. API keys can be acquired from the CollegeFootballData.com website.
7
7
 
8
- The version of the OpenAPI document: 1.14.0
8
+ The version of the OpenAPI document: 1.15.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 API is in limited Beta for Patreon subscribers. It may have bugs and is subject to changes. API keys can be acquired from the CollegeFootballData.com website.
7
7
 
8
- The version of the OpenAPI document: 1.14.0
8
+ The version of the OpenAPI document: 1.15.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 API is in limited Beta for Patreon subscribers. It may have bugs and is subject to changes. API keys can be acquired from the CollegeFootballData.com website.
7
7
 
8
- The version of the OpenAPI document: 1.14.0
8
+ The version of the OpenAPI document: 1.15.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.2
2
2
  Name: cbbd
3
- Version: 1.14.0
3
+ Version: 1.15.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,71 @@
1
+ cbbd/__init__.py,sha256=NOa-vN1qnzQ6UzlmB-lrKdXloQyv8XH5MoqMQI6vXMQ,4371
2
+ cbbd/api_client.py,sha256=IYjMvPr0rT_V10od0AEEfJIZhyf1qupUsXVOd6JxYDg,29896
3
+ cbbd/api_response.py,sha256=uCehWdXXDnAO2HAHGKe0SgpQ_mJiGDbcu-BHDF3n_IM,852
4
+ cbbd/configuration.py,sha256=8UBnN0nHAsuBeKM-CIIBeRiSvYjtnjD9T2C5QpddmOE,14799
5
+ cbbd/exceptions.py,sha256=BaimTa0Jcraxl5nkry2JkR9jcumQycTfEG0dSWl7AeI,5546
6
+ cbbd/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
7
+ cbbd/rest.py,sha256=CHOwpPeQQ4dDhj4MR0XYQwUp29OJh0N0PMmeaRFwJwM,14163
8
+ cbbd/api/__init__.py,sha256=2TdxtoR2arz7-PjkaHnd22u3bu2Fo88LUsgu6d5yY3g,522
9
+ cbbd/api/conferences_api.py,sha256=qCu5R9gWd7SyKPQPTboEtN2hqrL0UqgqqebQaT2MUx8,13079
10
+ cbbd/api/draft_api.py,sha256=MuWIg7QLdokRgjOGlK_YAllNu0W0UZNaYmxgnPs1pXs,20209
11
+ cbbd/api/games_api.py,sha256=xFdZLNtsMCk7CKuncz5PoONaAzFKFWFfBZ6-gAz54sM,41195
12
+ cbbd/api/lines_api.py,sha256=243n-p-Dk2vSqtLwAZsIfs-5XHt_0deGqHAg47mcbWU,15757
13
+ cbbd/api/plays_api.py,sha256=UFToAHFoDYWqWu564vbLyFJex_cP6SdR8bCS_xiU9Nw,35262
14
+ cbbd/api/rankings_api.py,sha256=LuybDek24sctR0sHmhreSuAWEZ76AF1xuxcaHFM2r9k,10005
15
+ cbbd/api/ratings_api.py,sha256=E_Cvcn3Vrv6wQRWbOwF5HuzMY6pa1LlyHlL3cEHKc6k,15679
16
+ cbbd/api/recruiting_api.py,sha256=UG-k-tjm8JZDdFqyAWwBXlniaCFvJAtSlxxiZIElHoI,8858
17
+ cbbd/api/stats_api.py,sha256=_gug2ylEtd3KLkCYvUQb5lGitCkPyMdscAIlAUjW7Oo,20183
18
+ cbbd/api/teams_api.py,sha256=2pyurEO-jREvuT3Prqgz41NmZFMmiMS7Dj61MsMidh4,14208
19
+ cbbd/api/venues_api.py,sha256=EmoCcf4YZPegHUuIWseMn1PX9s2xpkduPcxc28_3RSg,6568
20
+ cbbd/models/__init__.py,sha256=lmdURhO5DTbmkcqVXwm_isXpadqsxiXBOMMtohv5vP8,3442
21
+ cbbd/models/adjusted_efficiency_info.py,sha256=q2a5sHoF0qKNV0JCJ9C6vxRdIsWQUzBXMmfWfVbI568,3370
22
+ cbbd/models/adjusted_efficiency_info_rankings.py,sha256=EdFUIdMAtZ-1hKgfQpdQI35UoDlRc1A79j3rHZBQ-5o,2398
23
+ cbbd/models/conference_history.py,sha256=rvmQnJRrQlErIwgUN_vHQ5Q4uHu1-EVF8wrPP3XpTDE,3084
24
+ cbbd/models/conference_history_teams_inner.py,sha256=UcqwBBGW1sK1Tox2yvbZ1-KEHMq83HBXWBdsRNMkyd0,3130
25
+ cbbd/models/conference_info.py,sha256=lxXnwipBIl7Riq8QzmYZx7W-FWSoINg-Plg4Y577aeM,2437
26
+ cbbd/models/draft_pick.py,sha256=5YU5XW12oJthOr5437ZAoQbVGQww71e-SHvU6rDUHnE,6572
27
+ cbbd/models/draft_position.py,sha256=sjTH9x1_GjzlEPx-Ha9Gm9JQfJ8Q5JPnyIKyJ4V2ttA,2099
28
+ cbbd/models/draft_team.py,sha256=CT5HfjsIx0buEvNYTH5TijASymKx2etxIhoWTgUrqzw,2558
29
+ cbbd/models/game_box_score_players.py,sha256=QXiKjljGw5rsT7gt6j5l7s4BlS8fzGVmulVfh77MDLk,6356
30
+ cbbd/models/game_box_score_players_players_inner.py,sha256=42omr01ByLhzwwZLc4-Pz646OXldGKJ0c5tW8Yu3Z0E,12093
31
+ cbbd/models/game_box_score_team.py,sha256=1n1vOwuBdFiIooGOnVza3xwtPbYOUOKzzgZUJ6aZZuY,6387
32
+ cbbd/models/game_box_score_team_stats.py,sha256=eRLS2Ir_XeS0hpZ1lRfpRswcu6zIhb6uXL3LxTjW64U,8687
33
+ cbbd/models/game_box_score_team_stats_points.py,sha256=RimxaaawBFvtrwwBOBNgf1UsQQ2MHg6jyVRwVLIeEXo,4298
34
+ cbbd/models/game_info.py,sha256=nqq-nausboYg21h-dGPuJ9XVx48zzwo20zLqf4hgvjY,9986
35
+ cbbd/models/game_line_info.py,sha256=VwZRI-cNwey-EofQNHR8ufTLDoXwcP9mY7y6OpOJh1A,4371
36
+ cbbd/models/game_lines.py,sha256=E6-4o2E0-o4hEI3hb8-CgiGvT8xdQkT-c9sAOykpTUU,5077
37
+ cbbd/models/game_media_info.py,sha256=PPe03FNROUANGxSpvDcCk6SB4nxK4WeS7VjXNakTS5A,5672
38
+ cbbd/models/game_media_info_broadcasts_inner.py,sha256=xPhXkzF8Go6hYHvyMwUhq1QV_I4cxLSzBVu1dKBiBHk,2325
39
+ cbbd/models/game_status.py,sha256=zQpr78DzNc_gh7awTQYA0U_U-YtUkHioiHYxsMfnZM0,949
40
+ cbbd/models/line_provider_info.py,sha256=BzQHBOcffg3l8UlBcuvW_KzSiY3YkWpRll57n9L3DvE,2094
41
+ cbbd/models/play_info.py,sha256=PVePHiupP2iOkhIV0vUIQkJVxaGFbhuKgLJ3M8a4JQU,9663
42
+ cbbd/models/play_info_participants_inner.py,sha256=XsA11h4k1sgjHdguVtz_uPdeqGmtSctBRYO_1TEwlqk,2166
43
+ cbbd/models/play_type_info.py,sha256=j5P4P6WJpC82QwuPoTnbhQM0Q8Hec-SwcPyaFf_SsDM,2062
44
+ cbbd/models/player_season_stats.py,sha256=n5cw4uSgH5PU356Bf7E_3SlFHp3PmYvNEStDRlUcPUg,12542
45
+ cbbd/models/player_season_stats_win_shares.py,sha256=xbNo0_eXeA45iNr3hJQ5eLh3nhggTtjh0Wc0ffgB0Gs,3443
46
+ cbbd/models/poll_team_info.py,sha256=c6qMA4snr1w80PPkXfwS0MiSoumN7ScVEDNnDwms3SM,4422
47
+ cbbd/models/recruit.py,sha256=-Ui4WN39umYl3QFen9b5_iVKBQQZ5C-8ZpjD_WE_hzo,6394
48
+ cbbd/models/recruit_committed_to.py,sha256=ICqnGMGDFReeFux3-N_aOa5tQwQYqUK5MXpHABvX_uY,2870
49
+ cbbd/models/recruit_hometown.py,sha256=UeGqRFADFYMMeuZZhPpUooUpP3m_M8NHRjmBiB96IGU,3908
50
+ cbbd/models/season_type.py,sha256=DzgnALAQCBaq-ozp36ZyUXSFvK8L2YRSDrZFZo4wf9k,895
51
+ cbbd/models/shot_info.py,sha256=f67BzvCnJZfvCvur0ybp3qVYr7FlPzznRtpBUNoYZqY,4335
52
+ cbbd/models/shot_info_location.py,sha256=kQaHil5MJxkhzbLdyiCH9_lSKUsr1mABaUG4I5TSrXY,2144
53
+ cbbd/models/shot_info_shooter.py,sha256=l17CGTPpKT1j_0dgusnCKm-vtbUhEQY1dFNCO5tG6DI,2086
54
+ cbbd/models/srs_info.py,sha256=PkNilIFnlxD_Wgli7w6ud6y67zXjwwwZ4Udpb9H-sh0,2395
55
+ cbbd/models/team_info.py,sha256=bqMRzogaEQCnqXar3nuDnj6zxDsqokeyK5RFp0VR5Q0,6666
56
+ cbbd/models/team_roster.py,sha256=ySss6Xv7GMlxqfD99BOts7d8VTWL34vZ978x5m1bDJo,3295
57
+ cbbd/models/team_roster_player.py,sha256=Gmd2dAS71mMOg6mvWrqEPtsDswXYkKvs2VazxMGza50,5354
58
+ cbbd/models/team_roster_player_hometown.py,sha256=qFzvnKKTivNHG4hULceZnGbOnU-MzODMbRFsQykY4A8,3980
59
+ cbbd/models/team_season_stats.py,sha256=4lz71XQ2JXzccIewZnARIExleswi8EQKSkJSjTp2xT0,4467
60
+ cbbd/models/team_season_unit_stats.py,sha256=fO2F34IEzkw7an4vs4EDbiZu4_mUk-JxGa6KpchQrlI,8287
61
+ cbbd/models/team_season_unit_stats_field_goals.py,sha256=9JtNSbAyo2cToKqBQ1fnAz8F9CXW9Ri7vgtZmYJYVTY,3027
62
+ cbbd/models/team_season_unit_stats_fouls.py,sha256=m8_eYIADIsTdLGXtM7_p6WVmw61CZYw8L7ALWvE8QNw,3035
63
+ cbbd/models/team_season_unit_stats_four_factors.py,sha256=DDo1WErGAllY9vMXcDFs09AbKHTvwL_bKtZdoJzS9DA,3884
64
+ cbbd/models/team_season_unit_stats_points.py,sha256=gEg1nBHP2XxmZZuWyjeFOU8sUTlrvZ8ZvULBdAQZ-9s,3499
65
+ cbbd/models/team_season_unit_stats_rebounds.py,sha256=RdCUrQITHzmh_-XjFD4tVvNtCcjm_ESwHfTHlRbqyPg,3067
66
+ cbbd/models/team_season_unit_stats_turnovers.py,sha256=oGeJiRDix33iMF6--vWwmAZAtLemqHur61Njoymt4gg,2764
67
+ cbbd/models/venue_info.py,sha256=q61eFYETM51oOyaf35YT9qSq_aJhd_D2fG_XpD49vj4,3332
68
+ cbbd-1.15.1.dist-info/METADATA,sha256=7vM1gyox30mqFBXWJum8_QLRY_evqJ36JCPvzfbhtsA,764
69
+ cbbd-1.15.1.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
70
+ cbbd-1.15.1.dist-info/top_level.txt,sha256=d8efSEMxRPpV_X-2jtQvf9S-EI4HoFQpCEOZCjDxT24,5
71
+ cbbd-1.15.1.dist-info/RECORD,,
@@ -1,71 +0,0 @@
1
- cbbd/__init__.py,sha256=XYOlvPezr8JF7t1ghtJLlG4QyfZy8t-toApSnGyN0pU,4371
2
- cbbd/api_client.py,sha256=nyNew8ZW5K5yKJVwF35-D0bfuzc_t_fVvWk9h8mng5M,29896
3
- cbbd/api_response.py,sha256=uCehWdXXDnAO2HAHGKe0SgpQ_mJiGDbcu-BHDF3n_IM,852
4
- cbbd/configuration.py,sha256=wRhprmE53pL-THltyk_sPRRzYsvaBCDWqIIkqwCet0s,14799
5
- cbbd/exceptions.py,sha256=82i-OnjlFX1k0rLe_V15y-1lZpxBJyiqyEPHGDw-vEI,5546
6
- cbbd/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
7
- cbbd/rest.py,sha256=kkjfo5XLe5fdCe59vaoNtgMAvfH8uyd8nucZUShgZZU,14163
8
- cbbd/api/__init__.py,sha256=2TdxtoR2arz7-PjkaHnd22u3bu2Fo88LUsgu6d5yY3g,522
9
- cbbd/api/conferences_api.py,sha256=tS4iBLhrLRcc4KVyBWq7k8lnn8GFeZWXr4sEDdJxTjY,13079
10
- cbbd/api/draft_api.py,sha256=RN8rhgL9Sfi3-lMQBntN1scI6B4zjjydmpwX0tRXIHc,20209
11
- cbbd/api/games_api.py,sha256=FxFscLF0zW75UwpfKx8AApBDB3domq7jOQjga3-eNbs,41195
12
- cbbd/api/lines_api.py,sha256=GZI7UbWcsYNXBjcYRJxNZqtt4GrZ6pNrph33gdc3EsE,15757
13
- cbbd/api/plays_api.py,sha256=ZcP3C2YhJfGkHvjSpVNEx3w9d77MPXkMuzB9BtUa7XQ,35262
14
- cbbd/api/rankings_api.py,sha256=EohjB5Bdx9hf4i_DbCy-B0tEhik9xLdcFJhY0jdDGCM,10005
15
- cbbd/api/ratings_api.py,sha256=KetZAoqMmiGulkKzpBxg81wrNFYPi6riGRSA5Yve8jI,15679
16
- cbbd/api/recruiting_api.py,sha256=MoLst7nNlcVUhHncDrzu7w5UWDsKLgiTgJkZ7rV4py4,8858
17
- cbbd/api/stats_api.py,sha256=ZloX3DjegQYWWdZ-QT-2K_CxxNq8B2N_Jn7d6Z1EEy8,20183
18
- cbbd/api/teams_api.py,sha256=6Id46nz5snwfjBAtjB2TZtT_QjEObllaQUXzeF-ZQXU,14208
19
- cbbd/api/venues_api.py,sha256=6xPtVMJXRBkKe29BVyMW5uVUIE1innNzZ6t1UFWcBE0,6568
20
- cbbd/models/__init__.py,sha256=Z_hw2qNkvdc3TMD-H_WljwbGnyIN-IUbzI0TxYwLEGc,3442
21
- cbbd/models/adjusted_efficiency_info.py,sha256=pjrspocL8smfueygazHQoqPflJeO0Fg5BvwmAXpWQqM,3370
22
- cbbd/models/adjusted_efficiency_info_rankings.py,sha256=Zn96VYfxfUzbJ3NVdf8QAQepqsJti3ESKHcqQ0nrCSQ,2398
23
- cbbd/models/conference_history.py,sha256=x02SaTnM2JPRTxFzwKtjrWWtu7Qn9t35yuD8eqU2pGY,3084
24
- cbbd/models/conference_history_teams_inner.py,sha256=-7lXr5idsBach4XUomSrndGkBe3bLXc9hZO0Ptqfleg,3130
25
- cbbd/models/conference_info.py,sha256=VA_4uj9Ikf2ndXdxA0HX4zKdt1GNZcjRtR_od2sFDWk,2437
26
- cbbd/models/draft_pick.py,sha256=srb4Y5mDOFvWz8r5QED1K5A3BLw-M35Ps_Fi2VgPSNo,6572
27
- cbbd/models/draft_position.py,sha256=gA_lP5_Xryv1B4Lzf3wUTIr2bj_oRkdFCCEymNXSOFU,2099
28
- cbbd/models/draft_team.py,sha256=HLk9KUPce7Ndu9TWghvJC7Rg13ic78j6_8KIsYO7ks0,2558
29
- cbbd/models/game_box_score_players.py,sha256=MgnV3gMzZIBxEboyA8Tp0QgQS9-pof4S-rgQU3F00Ts,6356
30
- cbbd/models/game_box_score_players_players_inner.py,sha256=Wiw_B0UwlUWT1CYQylhtLJJrYPcotgLVQR69tSPK9GU,12093
31
- cbbd/models/game_box_score_team.py,sha256=7cygK7C5yxmNzSR09dXPP7ECK5dK22FwxjFWpF0JYVw,6387
32
- cbbd/models/game_box_score_team_stats.py,sha256=23LiBrrc8yKIT81V-KkE-nqCya_K5PWJsmpuarcfdVc,8687
33
- cbbd/models/game_box_score_team_stats_points.py,sha256=D98OKNKzj_ZUS6sC6DGaDsVx4R3S7DCZgKgsmfFVQVQ,4298
34
- cbbd/models/game_info.py,sha256=zTT6n5Ux6h00FcUfY_-56NByQ_wFjkQ4TTxFjC5-YLQ,9986
35
- cbbd/models/game_line_info.py,sha256=Yq0Jrit7XA33LZ5xP0kK0gxVxJe0e8OzuGkf3RKa6uk,4371
36
- cbbd/models/game_lines.py,sha256=0cV_AWg_vprgl7MXqvpvmuVSss8yt3I71DoWWtCXqnY,5077
37
- cbbd/models/game_media_info.py,sha256=yBJ1vBEh4B_zVBEOiLSGCtp-9K-R7ZutZro4Q10tI4g,5672
38
- cbbd/models/game_media_info_broadcasts_inner.py,sha256=zT7oibYw9RZ5XylikB1h5DHTShW3sJ3Ac5n8sts6Gs4,2325
39
- cbbd/models/game_status.py,sha256=zK8GPuU-eHtHXujkJ9JwP2zby77HvXUzGorMbDX3G9M,949
40
- cbbd/models/line_provider_info.py,sha256=QjvGnOBx3e193NivbyDqmStfQAetTi8Blyu2D8jE5nw,2094
41
- cbbd/models/play_info.py,sha256=23YEotL-b9GRdMfQ6nm1v-syyiXLd5qVe8Ju7iaCGRQ,9663
42
- cbbd/models/play_info_participants_inner.py,sha256=pt8OHWvCR-QnN8LN3XDyPIT4qhXD-ivIkproGecPELk,2166
43
- cbbd/models/play_type_info.py,sha256=1elD5UMshVXDKG4lCITAUTqIMOdZgHdKctokGMtXYJo,2062
44
- cbbd/models/player_season_stats.py,sha256=USlkpwt_9adwWLh8yiPc5ZH2ZzKlM5cKd_4xtJdA4aA,12542
45
- cbbd/models/player_season_stats_win_shares.py,sha256=NxEC_Yj6OqIcsYKZoc7bw2GC1tlT9u5Ij2X6Jpyf_RA,3443
46
- cbbd/models/poll_team_info.py,sha256=atMVAVpUuO3WWhlepJFKuGCRNqM3bMYFuHfUBNAMtQ0,4422
47
- cbbd/models/recruit.py,sha256=c0l5Rv1F8nStKsqpcb3lLggKVrZL5CGsvVV_rjjAUBg,6394
48
- cbbd/models/recruit_committed_to.py,sha256=Ti6irYcnlGJM2ubSIoJFEBmdW5_2DDpJ-97F-d8Wx38,2870
49
- cbbd/models/recruit_hometown.py,sha256=GZTKmay79jAtmg26Xar_DNtJCYjfr06B5r0HLeHKj6Y,2835
50
- cbbd/models/season_type.py,sha256=1ZOGVda3wjw2jaiW3-RC7xAn6yFPNEMsa1H8X1-NahY,895
51
- cbbd/models/shot_info.py,sha256=Zsz_vmKzrxfOs5SpdjDJ49AVnexORYtnjFQAntG1duQ,4335
52
- cbbd/models/shot_info_location.py,sha256=jLTr_numlFLlRda5CEMthBpOHIGUHwjX4OmQGTnM8lI,2144
53
- cbbd/models/shot_info_shooter.py,sha256=ivN9BQUJy0snkAGmSQDDPgIFd9jdgWMnnld5JrI3In4,2086
54
- cbbd/models/srs_info.py,sha256=lHkl9qiiKJSd2Hp_nK-OnqHZiYVgJN8WHhx2AriQMj4,2395
55
- cbbd/models/team_info.py,sha256=IUwuCGkeKHEZun110_OmOWhqPeFC9sgdl7_03dcOkFA,6666
56
- cbbd/models/team_roster.py,sha256=LG6H765LrzcQWqEq34FKNa8tPEO8KRBCXhS5BfO74s8,3295
57
- cbbd/models/team_roster_player.py,sha256=vTPjlou8YPyreR-4TmSz-f0sJVzLtosbGHxJr8S8tMM,5354
58
- cbbd/models/team_roster_player_hometown.py,sha256=Y-GSmn-RThu2B4hfnf8mh8L5ldCrZIPCFcpFDcLSHos,2907
59
- cbbd/models/team_season_stats.py,sha256=ggjtAbaRXBE_JZsyQllV8jldLAHr6zDgyWosLjTlZLg,4467
60
- cbbd/models/team_season_unit_stats.py,sha256=k9z_rmIR4jx4loRTLwACLp7cryh4XqFttqjtileVuK8,8287
61
- cbbd/models/team_season_unit_stats_field_goals.py,sha256=6LSuxkLF6-GE621mOxq3YifQBSM9qRNqDGwcOgcEnv8,3027
62
- cbbd/models/team_season_unit_stats_fouls.py,sha256=lgV4qe24r6kJZiUtocgbTT_pK4fFgIfIKCeuOwI1-WQ,3035
63
- cbbd/models/team_season_unit_stats_four_factors.py,sha256=XSWTFPoswz9Kf9_yaQn5IQBI4mpQjsX8l0mrdPTwVPY,3884
64
- cbbd/models/team_season_unit_stats_points.py,sha256=FvdU0odo-xkgEe3KU9s0084MGGkWCv9BNA9cpc8E9ng,3499
65
- cbbd/models/team_season_unit_stats_rebounds.py,sha256=xinYxsNXkfDUX9ftrzYF0AdsNBq_XSZG6x--264ujcU,3067
66
- cbbd/models/team_season_unit_stats_turnovers.py,sha256=iZW_vG39IIT7kbaSIJckhp3BP5IptWwIKtXEy8rg6wA,2764
67
- cbbd/models/venue_info.py,sha256=oN1DpkqQNj1asXmEoDKfjKRfxVEJUgk4FW1OMaTaE5U,3332
68
- cbbd-1.14.0.dist-info/METADATA,sha256=NGjCeopDifKOKZFxu0mYypBdU2ZfwQYudN9F9EfWFjY,764
69
- cbbd-1.14.0.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
70
- cbbd-1.14.0.dist-info/top_level.txt,sha256=d8efSEMxRPpV_X-2jtQvf9S-EI4HoFQpCEOZCjDxT24,5
71
- cbbd-1.14.0.dist-info/RECORD,,
File without changes