cbbd 1.16.0__py3-none-any.whl → 1.17.0__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 (72) hide show
  1. cbbd/__init__.py +3 -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 +2 -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 +12 -2
  38. cbbd/models/play_info_on_floor_inner.py +76 -0
  39. cbbd/models/play_info_participants_inner.py +1 -1
  40. cbbd/models/play_type_info.py +1 -1
  41. cbbd/models/player_season_stats.py +1 -1
  42. cbbd/models/player_season_stats_win_shares.py +1 -1
  43. cbbd/models/player_subsititution.py +1 -1
  44. cbbd/models/player_subsititution_sub_in.py +1 -1
  45. cbbd/models/poll_team_info.py +1 -1
  46. cbbd/models/recruit.py +1 -1
  47. cbbd/models/recruit_committed_to.py +1 -1
  48. cbbd/models/recruit_hometown.py +1 -1
  49. cbbd/models/season_type.py +1 -1
  50. cbbd/models/shot_info.py +1 -1
  51. cbbd/models/shot_info_location.py +1 -1
  52. cbbd/models/shot_info_shooter.py +1 -1
  53. cbbd/models/srs_info.py +1 -1
  54. cbbd/models/team_info.py +1 -1
  55. cbbd/models/team_roster.py +1 -1
  56. cbbd/models/team_roster_player.py +1 -1
  57. cbbd/models/team_roster_player_hometown.py +1 -1
  58. cbbd/models/team_season_stats.py +1 -1
  59. cbbd/models/team_season_unit_stats.py +1 -1
  60. cbbd/models/team_season_unit_stats_field_goals.py +1 -1
  61. cbbd/models/team_season_unit_stats_fouls.py +1 -1
  62. cbbd/models/team_season_unit_stats_four_factors.py +1 -1
  63. cbbd/models/team_season_unit_stats_points.py +1 -1
  64. cbbd/models/team_season_unit_stats_rebounds.py +1 -1
  65. cbbd/models/team_season_unit_stats_turnovers.py +1 -1
  66. cbbd/models/venue_info.py +1 -1
  67. cbbd/rest.py +1 -1
  68. {cbbd-1.16.0.dist-info → cbbd-1.17.0.dist-info}/METADATA +1 -1
  69. cbbd-1.17.0.dist-info/RECORD +74 -0
  70. cbbd-1.16.0.dist-info/RECORD +0 -73
  71. {cbbd-1.16.0.dist-info → cbbd-1.17.0.dist-info}/WHEEL +0 -0
  72. {cbbd-1.16.0.dist-info → cbbd-1.17.0.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.16.0
10
+ The version of the OpenAPI document: 1.17.0
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.16.0"
18
+ __version__ = "1.17.0"
19
19
 
20
20
  # import apis into sdk package
21
21
  from cbbd.api.conferences_api import ConferencesApi
@@ -63,6 +63,7 @@ from cbbd.models.game_media_info_broadcasts_inner import GameMediaInfoBroadcasts
63
63
  from cbbd.models.game_status import GameStatus
64
64
  from cbbd.models.line_provider_info import LineProviderInfo
65
65
  from cbbd.models.play_info import PlayInfo
66
+ from cbbd.models.play_info_on_floor_inner import PlayInfoOnFloorInner
66
67
  from cbbd.models.play_info_participants_inner import PlayInfoParticipantsInner
67
68
  from cbbd.models.play_type_info import PlayTypeInfo
68
69
  from cbbd.models.player_season_stats import PlayerSeasonStats
@@ -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.16.0
8
+ The version of the OpenAPI document: 1.17.0
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.16.0
8
+ The version of the OpenAPI document: 1.17.0
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.16.0
8
+ The version of the OpenAPI document: 1.17.0
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.16.0
8
+ The version of the OpenAPI document: 1.17.0
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.16.0
8
+ The version of the OpenAPI document: 1.17.0
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.16.0
8
+ The version of the OpenAPI document: 1.17.0
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.16.0
8
+ The version of the OpenAPI document: 1.17.0
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.16.0
8
+ The version of the OpenAPI document: 1.17.0
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.16.0
8
+ The version of the OpenAPI document: 1.17.0
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.16.0
8
+ The version of the OpenAPI document: 1.17.0
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.16.0
8
+ The version of the OpenAPI document: 1.17.0
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.16.0
8
+ The version of the OpenAPI document: 1.17.0
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.16.0/python'
81
+ self.user_agent = 'OpenAPI-Generator/1.17.0/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.16.0
8
+ The version of the OpenAPI document: 1.17.0
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.16.0\n"\
380
- "SDK Package Version: 1.16.0".\
379
+ "Version of the API: 1.17.0\n"\
380
+ "SDK Package Version: 1.17.0".\
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.16.0
8
+ The version of the OpenAPI document: 1.17.0
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.16.0
9
+ The version of the OpenAPI document: 1.17.0
10
10
  Contact: admin@collegefootballdata.com
11
11
  Generated by OpenAPI Generator (https://openapi-generator.tech)
12
12
 
@@ -36,6 +36,7 @@ from cbbd.models.game_media_info_broadcasts_inner import GameMediaInfoBroadcasts
36
36
  from cbbd.models.game_status import GameStatus
37
37
  from cbbd.models.line_provider_info import LineProviderInfo
38
38
  from cbbd.models.play_info import PlayInfo
39
+ from cbbd.models.play_info_on_floor_inner import PlayInfoOnFloorInner
39
40
  from cbbd.models.play_info_participants_inner import PlayInfoParticipantsInner
40
41
  from cbbd.models.play_type_info import PlayTypeInfo
41
42
  from cbbd.models.player_season_stats import PlayerSeasonStats
@@ -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.16.0
8
+ The version of the OpenAPI document: 1.17.0
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.16.0
8
+ The version of the OpenAPI document: 1.17.0
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.16.0
8
+ The version of the OpenAPI document: 1.17.0
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.16.0
8
+ The version of the OpenAPI document: 1.17.0
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.16.0
8
+ The version of the OpenAPI document: 1.17.0
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.16.0
8
+ The version of the OpenAPI document: 1.17.0
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.16.0
8
+ The version of the OpenAPI document: 1.17.0
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.16.0
8
+ The version of the OpenAPI document: 1.17.0
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.16.0
8
+ The version of the OpenAPI document: 1.17.0
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.16.0
8
+ The version of the OpenAPI document: 1.17.0
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.16.0
8
+ The version of the OpenAPI document: 1.17.0
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.16.0
8
+ The version of the OpenAPI document: 1.17.0
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.16.0
8
+ The version of the OpenAPI document: 1.17.0
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.16.0
8
+ The version of the OpenAPI document: 1.17.0
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.16.0
8
+ The version of the OpenAPI document: 1.17.0
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.16.0
8
+ The version of the OpenAPI document: 1.17.0
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.16.0
8
+ The version of the OpenAPI document: 1.17.0
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.16.0
8
+ The version of the OpenAPI document: 1.17.0
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.16.0
8
+ The version of the OpenAPI document: 1.17.0
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.16.0
8
+ The version of the OpenAPI document: 1.17.0
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.16.0
8
+ The version of the OpenAPI document: 1.17.0
9
9
  Contact: admin@collegefootballdata.com
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -21,6 +21,7 @@ import json
21
21
  from datetime import datetime
22
22
  from typing import List, Optional, Union
23
23
  from pydantic import BaseModel, Field, StrictBool, StrictFloat, StrictInt, StrictStr, conlist
24
+ from cbbd.models.play_info_on_floor_inner import PlayInfoOnFloorInner
24
25
  from cbbd.models.play_info_participants_inner import PlayInfoParticipantsInner
25
26
  from cbbd.models.season_type import SeasonType
26
27
  from cbbd.models.shot_info import ShotInfo
@@ -57,8 +58,9 @@ class PlayInfo(BaseModel):
57
58
  wallclock: Optional[datetime] = Field(...)
58
59
  play_text: Optional[StrictStr] = Field(default=..., alias="playText")
59
60
  participants: conlist(PlayInfoParticipantsInner) = Field(...)
61
+ on_floor: conlist(PlayInfoOnFloorInner) = Field(default=..., alias="onFloor")
60
62
  shot_info: Optional[ShotInfo] = Field(default=..., alias="shotInfo")
61
- __properties = ["id", "sourceId", "gameId", "gameSourceId", "gameStartDate", "season", "seasonType", "gameType", "playType", "isHomeTeam", "teamId", "team", "conference", "opponentId", "opponent", "opponentConference", "period", "clock", "secondsRemaining", "homeScore", "awayScore", "homeWinProbability", "scoringPlay", "shootingPlay", "scoreValue", "wallclock", "playText", "participants", "shotInfo"]
63
+ __properties = ["id", "sourceId", "gameId", "gameSourceId", "gameStartDate", "season", "seasonType", "gameType", "playType", "isHomeTeam", "teamId", "team", "conference", "opponentId", "opponent", "opponentConference", "period", "clock", "secondsRemaining", "homeScore", "awayScore", "homeWinProbability", "scoringPlay", "shootingPlay", "scoreValue", "wallclock", "playText", "participants", "onFloor", "shotInfo"]
62
64
 
63
65
  class Config:
64
66
  """Pydantic configuration"""
@@ -91,6 +93,13 @@ class PlayInfo(BaseModel):
91
93
  if _item:
92
94
  _items.append(_item.to_dict())
93
95
  _dict['participants'] = _items
96
+ # override the default output from pydantic by calling `to_dict()` of each item in on_floor (list)
97
+ _items = []
98
+ if self.on_floor:
99
+ for _item in self.on_floor:
100
+ if _item:
101
+ _items.append(_item.to_dict())
102
+ _dict['onFloor'] = _items
94
103
  # override the default output from pydantic by calling `to_dict()` of shot_info
95
104
  if self.shot_info:
96
105
  _dict['shotInfo'] = self.shot_info.to_dict()
@@ -204,6 +213,7 @@ class PlayInfo(BaseModel):
204
213
  "wallclock": obj.get("wallclock"),
205
214
  "play_text": obj.get("playText"),
206
215
  "participants": [PlayInfoParticipantsInner.from_dict(_item) for _item in obj.get("participants")] if obj.get("participants") is not None else None,
216
+ "on_floor": [PlayInfoOnFloorInner.from_dict(_item) for _item in obj.get("onFloor")] if obj.get("onFloor") is not None else None,
207
217
  "shot_info": ShotInfo.from_dict(obj.get("shotInfo")) if obj.get("shotInfo") is not None else None
208
218
  })
209
219
  return _obj
@@ -0,0 +1,76 @@
1
+ # coding: utf-8
2
+
3
+ """
4
+ College Basketball Data API
5
+
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
+
8
+ The version of the OpenAPI document: 1.17.0
9
+ Contact: admin@collegefootballdata.com
10
+ Generated by OpenAPI Generator (https://openapi-generator.tech)
11
+
12
+ Do not edit the class manually.
13
+ """ # noqa: E501
14
+
15
+
16
+ from __future__ import annotations
17
+ import pprint
18
+ import re # noqa: F401
19
+ import json
20
+
21
+
22
+
23
+ from pydantic import BaseModel, Field, StrictInt, StrictStr
24
+
25
+ class PlayInfoOnFloorInner(BaseModel):
26
+ """
27
+ PlayInfoOnFloorInner
28
+ """
29
+ team: StrictStr = Field(...)
30
+ name: StrictStr = Field(...)
31
+ id: StrictInt = Field(...)
32
+ __properties = ["team", "name", "id"]
33
+
34
+ class Config:
35
+ """Pydantic configuration"""
36
+ allow_population_by_field_name = True
37
+ validate_assignment = True
38
+
39
+ def to_str(self) -> str:
40
+ """Returns the string representation of the model using alias"""
41
+ return pprint.pformat(self.dict(by_alias=True))
42
+
43
+ def to_json(self) -> str:
44
+ """Returns the JSON representation of the model using alias"""
45
+ return json.dumps(self.to_dict())
46
+
47
+ @classmethod
48
+ def from_json(cls, json_str: str) -> PlayInfoOnFloorInner:
49
+ """Create an instance of PlayInfoOnFloorInner from a JSON string"""
50
+ return cls.from_dict(json.loads(json_str))
51
+
52
+ def to_dict(self):
53
+ """Returns the dictionary representation of the model using alias"""
54
+ _dict = self.dict(by_alias=True,
55
+ exclude={
56
+ },
57
+ exclude_none=True)
58
+ return _dict
59
+
60
+ @classmethod
61
+ def from_dict(cls, obj: dict) -> PlayInfoOnFloorInner:
62
+ """Create an instance of PlayInfoOnFloorInner from a dict"""
63
+ if obj is None:
64
+ return None
65
+
66
+ if not isinstance(obj, dict):
67
+ return PlayInfoOnFloorInner.parse_obj(obj)
68
+
69
+ _obj = PlayInfoOnFloorInner.parse_obj({
70
+ "team": obj.get("team"),
71
+ "name": obj.get("name"),
72
+ "id": obj.get("id")
73
+ })
74
+ return _obj
75
+
76
+
@@ -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.16.0
8
+ The version of the OpenAPI document: 1.17.0
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.16.0
8
+ The version of the OpenAPI document: 1.17.0
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.16.0
8
+ The version of the OpenAPI document: 1.17.0
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.16.0
8
+ The version of the OpenAPI document: 1.17.0
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.16.0
8
+ The version of the OpenAPI document: 1.17.0
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.16.0
8
+ The version of the OpenAPI document: 1.17.0
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.16.0
8
+ The version of the OpenAPI document: 1.17.0
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.16.0
8
+ The version of the OpenAPI document: 1.17.0
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.16.0
8
+ The version of the OpenAPI document: 1.17.0
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.16.0
8
+ The version of the OpenAPI document: 1.17.0
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.16.0
8
+ The version of the OpenAPI document: 1.17.0
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.16.0
8
+ The version of the OpenAPI document: 1.17.0
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.16.0
8
+ The version of the OpenAPI document: 1.17.0
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.16.0
8
+ The version of the OpenAPI document: 1.17.0
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.16.0
8
+ The version of the OpenAPI document: 1.17.0
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.16.0
8
+ The version of the OpenAPI document: 1.17.0
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.16.0
8
+ The version of the OpenAPI document: 1.17.0
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.16.0
8
+ The version of the OpenAPI document: 1.17.0
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.16.0
8
+ The version of the OpenAPI document: 1.17.0
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.16.0
8
+ The version of the OpenAPI document: 1.17.0
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.16.0
8
+ The version of the OpenAPI document: 1.17.0
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.16.0
8
+ The version of the OpenAPI document: 1.17.0
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.16.0
8
+ The version of the OpenAPI document: 1.17.0
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.16.0
8
+ The version of the OpenAPI document: 1.17.0
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.16.0
8
+ The version of the OpenAPI document: 1.17.0
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.16.0
8
+ The version of the OpenAPI document: 1.17.0
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.16.0
8
+ The version of the OpenAPI document: 1.17.0
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.16.0
8
+ The version of the OpenAPI document: 1.17.0
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.16.0
8
+ The version of the OpenAPI document: 1.17.0
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.16.0
3
+ Version: 1.17.0
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,74 @@
1
+ cbbd/__init__.py,sha256=wkFS7YKZ2kNcnb9wIl3eRvwYdi7dLxtOVtYC5u7Iy5Y,4583
2
+ cbbd/api_client.py,sha256=s5lWCLJxQd8A9vk-g8DXA0XVAPKl4tztgdFhlJyviWc,29903
3
+ cbbd/api_response.py,sha256=uCehWdXXDnAO2HAHGKe0SgpQ_mJiGDbcu-BHDF3n_IM,852
4
+ cbbd/configuration.py,sha256=b5eisycummxGh-1QGY9ikA0aMULUuZYY8sYPVqxU52M,14799
5
+ cbbd/exceptions.py,sha256=z2a_TiQL6LT9zwwBhbszRsgfpW1NDFjrT7QJ7QdsfR0,5546
6
+ cbbd/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
7
+ cbbd/rest.py,sha256=H29G1i_91BEv1GsiowjsN1A1VkCTq9nuyBDGWJxRsb4,14163
8
+ cbbd/api/__init__.py,sha256=2TdxtoR2arz7-PjkaHnd22u3bu2Fo88LUsgu6d5yY3g,522
9
+ cbbd/api/conferences_api.py,sha256=MoRE_xXaZ-GZ3hP17G5kloWVd9DmV_JyLhn9AD2qbrc,13079
10
+ cbbd/api/draft_api.py,sha256=70_TqxwDw9RJJRYrCoZVVzrZlsnEKT9t7UNQMxEt56E,20209
11
+ cbbd/api/games_api.py,sha256=IsTNgtOEDocerfxTYaJlh33uAy_Iotf-VyrJ-M25ZaY,41195
12
+ cbbd/api/lines_api.py,sha256=Ejv6Gr41-YiWqrh8Cx9tLEawCKomlfQyqDWaFKJ2WcU,15757
13
+ cbbd/api/plays_api.py,sha256=VVJrCGPxGE1k0U_vfWTBa6x4VfYt8gMqQFIxCrfmqgc,54890
14
+ cbbd/api/rankings_api.py,sha256=52XmaJbRd0LRpTlRUvux_gT5zaqVC5UQBzZBLeDTHg0,10005
15
+ cbbd/api/ratings_api.py,sha256=Gr4YsfF4YMpT0EMuHiGZml9h9Fm3qhafAnGudnmvTok,15679
16
+ cbbd/api/recruiting_api.py,sha256=EEecL8-Lx0K0Rl4NLI6ongxQNPJmQ6GZnsf3EN49QNs,8858
17
+ cbbd/api/stats_api.py,sha256=DHFAu6XwP8yD_TjYEQ9Ziuwcyu6apDBMYAMt6WUip5Y,20183
18
+ cbbd/api/teams_api.py,sha256=N9oXXDepOIvg3LNpc95cwqipcG1N8wd7TSVMb86OQp4,14208
19
+ cbbd/api/venues_api.py,sha256=bS6VAkrFsCcqQipQsS6kZQ-sYKdRHjU1tYfn8muBQsI,6568
20
+ cbbd/models/__init__.py,sha256=cKXx8gFm9MET4h_B8yz2wFDqwrVhwLGzYjagtGhPAZo,3654
21
+ cbbd/models/adjusted_efficiency_info.py,sha256=HPIliUMvOWSlODvjCm7IPCcGBa1xcmpc63pg2w9jjV0,3370
22
+ cbbd/models/adjusted_efficiency_info_rankings.py,sha256=EvdYN3VHYsKuo7DEB1WHouO6J-Q5rxqx-X2L-AkGICI,2398
23
+ cbbd/models/conference_history.py,sha256=A09Niz3GWUlcEZ6PMGz3Q3YxYmk_XeIPYAMaZ7txS_o,3084
24
+ cbbd/models/conference_history_teams_inner.py,sha256=uqbB9k6UC4HSPSClZp6X7ykf0FSmbv5JTjztGpGCGk4,3130
25
+ cbbd/models/conference_info.py,sha256=TTT0FhXhZOWJuDrmaBQKEtH5I23Luod-uf3PtpsiDss,2437
26
+ cbbd/models/draft_pick.py,sha256=pOKMh4eX4IOrGB90kESZJAYlfJO4i-je-iCv_dRtCBg,6572
27
+ cbbd/models/draft_position.py,sha256=RLdcL_Kwwxa6kxaqoigevggbwovjlLfGwhZ7VIdsopI,2099
28
+ cbbd/models/draft_team.py,sha256=8fAHMyiQ5f21F_eJ5PjlLVqGcAB4MWo3lKqwGv1oPQc,2558
29
+ cbbd/models/game_box_score_players.py,sha256=TWnrKApmH6aI9xhGu1wijkqvvfXFMHxkhwUnNkz7xnc,6356
30
+ cbbd/models/game_box_score_players_players_inner.py,sha256=WXPeNMMVdHQ8WmZNgGM13x0gFfHOXk8InY484tHGZ7U,12093
31
+ cbbd/models/game_box_score_team.py,sha256=NJ1L_rglhY4SbYfYa0odY-sdH1V6r7j6t1Cw2PQBEDY,6527
32
+ cbbd/models/game_box_score_team_stats.py,sha256=vX8irOVnU1ITZjTumaOIasCiLZabQeBNKgG2jKxApNc,8687
33
+ cbbd/models/game_box_score_team_stats_points.py,sha256=CxtpHho9p2QJ_ovduepzG0xQCvJZtxKV_k2jhsTnAcs,4298
34
+ cbbd/models/game_info.py,sha256=0I9wmjWshaW4pOvKC-Uj4LviSH9oIPBnOAI9WV24_sw,9986
35
+ cbbd/models/game_line_info.py,sha256=VO5ruTrvE5eIfec6XNtQ-eJzFR-fQ2LBa4Zv3WxGdB0,4371
36
+ cbbd/models/game_lines.py,sha256=vcOH3IA7hEdewm8sY4JWe6oDcIqU2grpkIHhyoSwMKg,5077
37
+ cbbd/models/game_media_info.py,sha256=1RF1InfsIsB0m0mRXrUNr3TZ3qwINufvTUCDyLjuIn8,5672
38
+ cbbd/models/game_media_info_broadcasts_inner.py,sha256=9378VNE8MoNd3RbpP1k52eynbTJEAIMwL3R2zyfNB88,2325
39
+ cbbd/models/game_status.py,sha256=eMHwXqmnvjyYvk0C4H_kTD8S8mGrB3ExgCvxuvNpXgw,949
40
+ cbbd/models/line_provider_info.py,sha256=XwhIWhQIO-07DTEDZTcsDnkxQoPUa3n7rMGD7N2taIU,2094
41
+ cbbd/models/play_info.py,sha256=caJeeXfzjYPFtCtmhLF2yzUCIGVtAipivsDk4H3lMIQ,10275
42
+ cbbd/models/play_info_on_floor_inner.py,sha256=1kJf8HjGRhnJuSjoXPEwj3gVJdFw-4H8CyPORWr_71k,2204
43
+ cbbd/models/play_info_participants_inner.py,sha256=MvDAasfCYdbELp3HIYRwC1-DoPlQvfSvHgAQqenX5TM,2166
44
+ cbbd/models/play_type_info.py,sha256=j_H3-SCu6n9RrSvwirvY0HXPl8JnXg16lb9Pmr7CDPQ,2062
45
+ cbbd/models/player_season_stats.py,sha256=Ifxw89kzUs3dZp1jyv-41k_Tiz4Y-H_zqms3WHibcH8,12542
46
+ cbbd/models/player_season_stats_win_shares.py,sha256=2wkVSdUDzwuOH5YER9AfSYs2JtgZVd4O67MS6AJpTrc,3443
47
+ cbbd/models/player_subsititution.py,sha256=dkZiOn5syLhdnqwb6E074DX8-TAj6Meo1R4AF1sXSmI,4786
48
+ cbbd/models/player_subsititution_sub_in.py,sha256=td43yQeFKZPx9qYH6LR8Gw0iWu6mZp2ncuA0d1VndGM,2531
49
+ cbbd/models/poll_team_info.py,sha256=TDL9foMAsogxs3gDeZ28DRLWhpt0YvvhQDJjfqPf1UA,4422
50
+ cbbd/models/recruit.py,sha256=Gs_DQptXYHw6P4qPAJT5P0GFtNfJuBvsILhCve3JdU0,6394
51
+ cbbd/models/recruit_committed_to.py,sha256=1w2nxuU60Y9W9VX9HMn8UmsPWavSqm2QH57gFCW0kR8,2870
52
+ cbbd/models/recruit_hometown.py,sha256=xndD_BSmFkhVHmVdSFNfmbb4KQDgJmL7NiGR7yLKIYQ,3908
53
+ cbbd/models/season_type.py,sha256=11ahpKDzwjrDhZoSI7xOevJ02I52sW9KL2klS2rOc88,895
54
+ cbbd/models/shot_info.py,sha256=mTiZifRrKX4ZFZ7bTt2t1nrvY8Fr8o-QF6JpmYmF2Ag,3638
55
+ cbbd/models/shot_info_location.py,sha256=topTy8HikTxAbhJQ0ePZn5CNnv6zBXtaH4lT5uc86dc,2540
56
+ cbbd/models/shot_info_shooter.py,sha256=tKzbSBiCnGwSeZNb8MOzMXd17Dk6eLOEZOBnhiLxvjE,2515
57
+ cbbd/models/srs_info.py,sha256=NEz2Ab9TqsdHemxj0mmF3DTxjcllxYwgUd2NaUXtPs8,2395
58
+ cbbd/models/team_info.py,sha256=HNXPkHbLszL7ri-vIT6JBm1W6_jnMWTz8kxzKL77WiQ,6666
59
+ cbbd/models/team_roster.py,sha256=IyWIrXKXqAEmxUaXBGqzACoZPC9NZRuI5_urqCf1U9w,3295
60
+ cbbd/models/team_roster_player.py,sha256=jHfZQQn2DqrvG12z_pCX4PirmV0WSNPMmPWQcvcLZXc,5354
61
+ cbbd/models/team_roster_player_hometown.py,sha256=WtPi-OEN1RLv_NsKhpD_hmBCJwVIiZvvzTDZkU-R6xc,3980
62
+ cbbd/models/team_season_stats.py,sha256=_W5Im0F8HZl4yEzE_Ypbjn6sBY6Nn8gRSnjaBnGwtQQ,4607
63
+ cbbd/models/team_season_unit_stats.py,sha256=8ZsMHijVT2iCJKVkMqrhYqsPd7SzrVrzHz6XdC4VY-E,8287
64
+ cbbd/models/team_season_unit_stats_field_goals.py,sha256=1QPvy6-7IXOo4sO1wLomQxymRmYfT81mP9dqNxltWYY,3027
65
+ cbbd/models/team_season_unit_stats_fouls.py,sha256=XlzRIvlWRTFLjuPCJUc4cCGhQ1stCqvikO2UGWxmi9w,3035
66
+ cbbd/models/team_season_unit_stats_four_factors.py,sha256=7bGZImbyFI5ebgZh-u0AMGUXCqRqmtL0Ayy0g6ur9Dk,3884
67
+ cbbd/models/team_season_unit_stats_points.py,sha256=p9ffayop59JNJpcRw2YjHwav3i26p2Y6GUSFA8BbZuA,3499
68
+ cbbd/models/team_season_unit_stats_rebounds.py,sha256=PXFLePRvg2EeGG3RvatrxACc8zmEg4MjjjdML2W2GVs,3067
69
+ cbbd/models/team_season_unit_stats_turnovers.py,sha256=44MKIU2_CZQdyaM_IaK4LkBfU8ohH_qHKGXayEGXesQ,2764
70
+ cbbd/models/venue_info.py,sha256=jRTET-QpWIaEILcdx6xROMdt0D6E6qqK-0Hav6n3mOU,3332
71
+ cbbd-1.17.0.dist-info/METADATA,sha256=HNVe3VSbWq6Hz2vMOOdZE8GkhzpKZIcrpFTn8y4J9BQ,764
72
+ cbbd-1.17.0.dist-info/WHEEL,sha256=jB7zZ3N9hIM9adW7qlTAyycLYW9npaWKLRzaoVcLKcM,91
73
+ cbbd-1.17.0.dist-info/top_level.txt,sha256=d8efSEMxRPpV_X-2jtQvf9S-EI4HoFQpCEOZCjDxT24,5
74
+ cbbd-1.17.0.dist-info/RECORD,,
@@ -1,73 +0,0 @@
1
- cbbd/__init__.py,sha256=55AdEN3usW83nSmaM-Bm_i7u-YL9JL8e6aye1Qqqyrw,4513
2
- cbbd/api_client.py,sha256=IQvWd-T2yz1wSWoL6Rdrh35u_mdN9OT7ytlIiMKGAmM,29903
3
- cbbd/api_response.py,sha256=uCehWdXXDnAO2HAHGKe0SgpQ_mJiGDbcu-BHDF3n_IM,852
4
- cbbd/configuration.py,sha256=vB5O07Ofn3dxSGhwrkGKrRhqfxyNF4WIwqnqYPuuGXQ,14799
5
- cbbd/exceptions.py,sha256=Fcc6OPQUm3nbBaPBpEa7MsgxCWL8H0-3QupwzrYm2d0,5546
6
- cbbd/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
7
- cbbd/rest.py,sha256=7lYLVyRyYjevjCd2iQMcDUlNJ2tNQsKgZAnCyNfPtZ0,14163
8
- cbbd/api/__init__.py,sha256=2TdxtoR2arz7-PjkaHnd22u3bu2Fo88LUsgu6d5yY3g,522
9
- cbbd/api/conferences_api.py,sha256=RV6gD9W_10J438AEln8Nh923g-HkafymUZBVQrHmS5Q,13079
10
- cbbd/api/draft_api.py,sha256=2lmnyGxvjN-pxquKkCb3AIN2ELkr4RVdVXiKBn2JB7w,20209
11
- cbbd/api/games_api.py,sha256=-DPATfRiMqUv8S-VOFP_dVfIasmCax6jPhIR8iobWIQ,41195
12
- cbbd/api/lines_api.py,sha256=GZUqi3JtpGhgCSn_FIIEZzu7COUJljE7aT3rr-MtJeg,15757
13
- cbbd/api/plays_api.py,sha256=KQZdhoZQIEq0lfXHFJKuCr_oqZcraX8My_edSR5mlhI,54890
14
- cbbd/api/rankings_api.py,sha256=EvPCt65jB7PVsyTtOv9mJFgAqybewZghtcogAKp3UDg,10005
15
- cbbd/api/ratings_api.py,sha256=Zv8elm7UEu23J4UMCxwTfUJ2ho-xnAECKMJZWm1OYQw,15679
16
- cbbd/api/recruiting_api.py,sha256=Onhs5_8AKNjyvZ1bidzEu4YryNqSuIrJ6TdhJYxI4fs,8858
17
- cbbd/api/stats_api.py,sha256=Ko7_-RZ0TWfgkwQxnleT34BoF0QRHQdoQXftbY4Lwug,20183
18
- cbbd/api/teams_api.py,sha256=zg-ZluiXkPwZSBOJoBAJf3xE-yOhHaZl7JIGgGKHcGI,14208
19
- cbbd/api/venues_api.py,sha256=22EhX2d15Woskrd3LHGle2xivP0U_0tOlmOtK-9x45s,6568
20
- cbbd/models/__init__.py,sha256=MqZ4J_BNJ9QZdMqWaCplnrQbZ3DThAoqiWHVlXBg4MM,3584
21
- cbbd/models/adjusted_efficiency_info.py,sha256=FBUXDM3p3uBA9UDFbvkvN0CwKvlW_ulbDCLFxBJUKTo,3370
22
- cbbd/models/adjusted_efficiency_info_rankings.py,sha256=FkYoJaS2cYGyNvxW7eyg4lOhQ-F5MOsuYBSFIvQIW5o,2398
23
- cbbd/models/conference_history.py,sha256=zTQ2QRanGK7o23dd9jrrsQaVxdtG6alaaSyDOCjKW9U,3084
24
- cbbd/models/conference_history_teams_inner.py,sha256=1uOMtUpj3fqsRHvv00mO49Mh1YZqYA2VpX2OSgxNzA4,3130
25
- cbbd/models/conference_info.py,sha256=rIkVihWriFyjjPt3y26re0U2398LPykSjgwBVREyHhI,2437
26
- cbbd/models/draft_pick.py,sha256=2vnoBlldOa5FYsjwGyl7Xb0U4OMD0c5z7ZpPSid-gUQ,6572
27
- cbbd/models/draft_position.py,sha256=SjYi2nj_yAS-f0XthOwl_WcTzESu2TsiMbXFTL_atJU,2099
28
- cbbd/models/draft_team.py,sha256=Vq3NzvToovWD3Hq4gf_Xs0bYZXNIDCrPHNKRUbXv6U0,2558
29
- cbbd/models/game_box_score_players.py,sha256=LdeJUZmZKmnfGu45tiKeJdcFODaGf031ehr4pZWXbms,6356
30
- cbbd/models/game_box_score_players_players_inner.py,sha256=ON5aWBg66l3SqfLiZswxLaOT8MqLzOCBkAQ6ulvjQN8,12093
31
- cbbd/models/game_box_score_team.py,sha256=p3AMrs4riuojorJgBtbnASg4fVgzLg_0qApgg0CvrGw,6527
32
- cbbd/models/game_box_score_team_stats.py,sha256=PrqIuZgaCu1kkiYDa9WATAoyO1OKTCLAjPMVWKLOezE,8687
33
- cbbd/models/game_box_score_team_stats_points.py,sha256=bwbBKKF6RwSfgJYC6C48WVDypsTI16p6e5Bl_h7GKFA,4298
34
- cbbd/models/game_info.py,sha256=soI8gEfYKCULrmI-T6cQfHvFOr557BrNj_qiXihwfAY,9986
35
- cbbd/models/game_line_info.py,sha256=wCab5ibpb_ICRwasDfbBVOgTnceDo8kkpgt8SOK-iNQ,4371
36
- cbbd/models/game_lines.py,sha256=uyGCzHMhj08IWlPNR5uyJ7nkv2VUTLPs6qnWeXx2qM0,5077
37
- cbbd/models/game_media_info.py,sha256=Cbv4abcXmA3mxsGRu12vfHVtSPGuYe9dmCNmyy230vE,5672
38
- cbbd/models/game_media_info_broadcasts_inner.py,sha256=lhvlrPI5JycqMzw47yPojJHDMt-NFe77FohimUtstyU,2325
39
- cbbd/models/game_status.py,sha256=IG8afMN8nIsJtt7ahfxaMQdXg7qgN-8_lH1UFKFuNMA,949
40
- cbbd/models/line_provider_info.py,sha256=wW9qGbXBoMp7NVerNnw4wnXd9HqSGRCEMk1zeAZOgdo,2094
41
- cbbd/models/play_info.py,sha256=D9PHBjNOBrieCMpVx60gy560fw6DsotgoArwsg8lvNE,9663
42
- cbbd/models/play_info_participants_inner.py,sha256=rvtpe_9Nc0lbo8tqw5BYFqUncYaOJcg-ktRGsJGbHPY,2166
43
- cbbd/models/play_type_info.py,sha256=HDfIxidSxG6NDbRnbn4DoQmbEucT5Knu1jAvqnCB91Y,2062
44
- cbbd/models/player_season_stats.py,sha256=nRcsmJtxmx25xN6UpO5byCKxRtEsDM77paHtIf04zAQ,12542
45
- cbbd/models/player_season_stats_win_shares.py,sha256=Enac2Pl5rmh_ryC27PJLALcKBscojY7-IooT34Z7hHw,3443
46
- cbbd/models/player_subsititution.py,sha256=EUz6TKEZX5fIP7u3tJuOlSOTN9o2RbK1E4_Q4GRcy6Q,4786
47
- cbbd/models/player_subsititution_sub_in.py,sha256=8Rge1A-Bw6lHSE5h8lVZwj8yv7CAkMHIL81JN5Mk5oo,2531
48
- cbbd/models/poll_team_info.py,sha256=p7K_AHIcvwlrHvY9bCMlmNPEJZUpHBMoy2POtcAx4Wg,4422
49
- cbbd/models/recruit.py,sha256=yYMtHT1M_p7xdG96jA3rWDnhx8ByszMM5otGp1kXulM,6394
50
- cbbd/models/recruit_committed_to.py,sha256=nCR-DZR7KYej60qciBAOGeuvkSPJ-jnsZhIWrY51wN0,2870
51
- cbbd/models/recruit_hometown.py,sha256=BhoAdFSqQA6Q5Kzz7dzGOTgCrkosp2aTqHs58MBU1JU,3908
52
- cbbd/models/season_type.py,sha256=x65SbYKKMffAPmOh1hjUqVq5pQbDX-HBeFbejAj5rDM,895
53
- cbbd/models/shot_info.py,sha256=ytDkYyB8GHlukhQm9Ij-vNXruVA6XEN7qV2C6xY2Y-Q,3638
54
- cbbd/models/shot_info_location.py,sha256=xnC-_MzWx2FCFw8GdP0LHSRMT44fPM5kgEdSBpOlGwg,2540
55
- cbbd/models/shot_info_shooter.py,sha256=MDumhwG8NXO18YNw0fqh7wn15wsJTqKP2PnS-gOA8I8,2515
56
- cbbd/models/srs_info.py,sha256=Gm4isD8gI-xTpGFk-zGFEDoQnw4oZo4BlvF3zDgcAHM,2395
57
- cbbd/models/team_info.py,sha256=1t6ClKGt1MsYdgmtIMPmormk1Wbb1i1ys6F4MktlXQw,6666
58
- cbbd/models/team_roster.py,sha256=Rg0v9fjeyTzm54NkutzWWsEPYP65lTRker7y-5NTLFg,3295
59
- cbbd/models/team_roster_player.py,sha256=r6HqXPB1QRRmosgZ43GfKYPKBXfCZDhGonJIzoBdiDQ,5354
60
- cbbd/models/team_roster_player_hometown.py,sha256=Y0L5lZSVw9GkePhia_rYJjdTCLLAuib6vGrZDtxqydI,3980
61
- cbbd/models/team_season_stats.py,sha256=4ctcQkW10IhIhT8TC0pKYWJL2TzFtZskCyQmHL1tcRc,4607
62
- cbbd/models/team_season_unit_stats.py,sha256=hN2iC6l7e1shuAtrlY845RtqelNNOhWAod4wSR2YUNI,8287
63
- cbbd/models/team_season_unit_stats_field_goals.py,sha256=YIOdyNEtyHNWBx3Wc3dTWa-kUn7AtXjRkU8vgNeYc8E,3027
64
- cbbd/models/team_season_unit_stats_fouls.py,sha256=5k8jt8oGvw-ZBqvfIH11GiuK8L-bhqZPCg94KAeFkhU,3035
65
- cbbd/models/team_season_unit_stats_four_factors.py,sha256=11bWGAWuOiCNYj4xlzHQm-PQlQpuqO_GEu4j4YoB8lk,3884
66
- cbbd/models/team_season_unit_stats_points.py,sha256=dD2JVGAx4pGbO-Y25QlsZUDwZ7lGGSr0GsXYduLcJQM,3499
67
- cbbd/models/team_season_unit_stats_rebounds.py,sha256=tBn6x_eX4O0huSzVh5JCsBjvKP85UGpyjHGm2DmPWK8,3067
68
- cbbd/models/team_season_unit_stats_turnovers.py,sha256=cgqduelMAgYInx0m7oJ0EyThaFYqLVIh_GP47ik2gtU,2764
69
- cbbd/models/venue_info.py,sha256=oiUnv2bqQq5ogSsU9dxLVEfqZMvZmHbMjT8nCIv6u8o,3332
70
- cbbd-1.16.0.dist-info/METADATA,sha256=6DduQkz2mGO4EBL9VyRJzihqQsMHoOk2YRxl3y_5LKs,764
71
- cbbd-1.16.0.dist-info/WHEEL,sha256=jB7zZ3N9hIM9adW7qlTAyycLYW9npaWKLRzaoVcLKcM,91
72
- cbbd-1.16.0.dist-info/top_level.txt,sha256=d8efSEMxRPpV_X-2jtQvf9S-EI4HoFQpCEOZCjDxT24,5
73
- cbbd-1.16.0.dist-info/RECORD,,
File without changes