cbbd 1.8.0__py3-none-any.whl → 1.10.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 (59) hide show
  1. cbbd/__init__.py +4 -2
  2. cbbd/api/__init__.py +1 -0
  3. cbbd/api/conferences_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 +228 -0
  8. cbbd/api/ratings_api.py +1 -1
  9. cbbd/api/stats_api.py +1 -1
  10. cbbd/api/teams_api.py +1 -1
  11. cbbd/api/venues_api.py +1 -1
  12. cbbd/api_client.py +2 -2
  13. cbbd/configuration.py +3 -3
  14. cbbd/exceptions.py +1 -1
  15. cbbd/models/__init__.py +2 -1
  16. cbbd/models/adjusted_efficiency_info.py +1 -1
  17. cbbd/models/conference_history.py +1 -1
  18. cbbd/models/conference_history_teams_inner.py +1 -1
  19. cbbd/models/conference_info.py +1 -1
  20. cbbd/models/game_box_score_players.py +1 -1
  21. cbbd/models/game_box_score_players_players_inner.py +1 -1
  22. cbbd/models/game_box_score_team.py +1 -1
  23. cbbd/models/game_box_score_team_stats.py +1 -1
  24. cbbd/models/game_box_score_team_stats_points.py +1 -1
  25. cbbd/models/game_info.py +1 -1
  26. cbbd/models/game_line_info.py +1 -1
  27. cbbd/models/game_lines.py +1 -1
  28. cbbd/models/game_media_info.py +1 -1
  29. cbbd/models/game_media_info_broadcasts_inner.py +1 -1
  30. cbbd/models/game_status.py +1 -1
  31. cbbd/models/line_provider_info.py +1 -1
  32. cbbd/models/play_info.py +1 -1
  33. cbbd/models/play_info_participants_inner.py +1 -1
  34. cbbd/models/play_type_info.py +1 -1
  35. cbbd/models/player_season_stats.py +8 -3
  36. cbbd/models/poll_team_info.py +118 -0
  37. cbbd/models/season_type.py +1 -1
  38. cbbd/models/shot_info.py +1 -1
  39. cbbd/models/shot_info_shooter.py +1 -1
  40. cbbd/models/srs_info.py +1 -1
  41. cbbd/models/team_info.py +1 -1
  42. cbbd/models/team_roster.py +1 -1
  43. cbbd/models/team_roster_player.py +1 -1
  44. cbbd/models/team_roster_player_hometown.py +1 -1
  45. cbbd/models/team_season_stats.py +1 -1
  46. cbbd/models/team_season_unit_stats.py +1 -1
  47. cbbd/models/team_season_unit_stats_field_goals.py +1 -1
  48. cbbd/models/team_season_unit_stats_fouls.py +1 -1
  49. cbbd/models/team_season_unit_stats_four_factors.py +1 -1
  50. cbbd/models/team_season_unit_stats_points.py +1 -1
  51. cbbd/models/team_season_unit_stats_rebounds.py +1 -1
  52. cbbd/models/team_season_unit_stats_turnovers.py +1 -1
  53. cbbd/models/venue_info.py +1 -1
  54. cbbd/rest.py +1 -1
  55. {cbbd-1.8.0.dist-info → cbbd-1.10.1.dist-info}/METADATA +1 -1
  56. cbbd-1.10.1.dist-info/RECORD +60 -0
  57. cbbd-1.8.0.dist-info/RECORD +0 -58
  58. {cbbd-1.8.0.dist-info → cbbd-1.10.1.dist-info}/WHEEL +0 -0
  59. {cbbd-1.8.0.dist-info → cbbd-1.10.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.8.0
10
+ The version of the OpenAPI document: 1.10.1
11
11
  Contact: admin@collegefootballdata.com
12
12
  Generated by OpenAPI Generator (https://openapi-generator.tech)
13
13
 
@@ -15,13 +15,14 @@
15
15
  """ # noqa: E501
16
16
 
17
17
 
18
- __version__ = "1.8.0"
18
+ __version__ = "1.10.1"
19
19
 
20
20
  # import apis into sdk package
21
21
  from cbbd.api.conferences_api import ConferencesApi
22
22
  from cbbd.api.games_api import GamesApi
23
23
  from cbbd.api.lines_api import LinesApi
24
24
  from cbbd.api.plays_api import PlaysApi
25
+ from cbbd.api.rankings_api import RankingsApi
25
26
  from cbbd.api.ratings_api import RatingsApi
26
27
  from cbbd.api.stats_api import StatsApi
27
28
  from cbbd.api.teams_api import TeamsApi
@@ -59,6 +60,7 @@ from cbbd.models.play_info import PlayInfo
59
60
  from cbbd.models.play_info_participants_inner import PlayInfoParticipantsInner
60
61
  from cbbd.models.play_type_info import PlayTypeInfo
61
62
  from cbbd.models.player_season_stats import PlayerSeasonStats
63
+ from cbbd.models.poll_team_info import PollTeamInfo
62
64
  from cbbd.models.season_type import SeasonType
63
65
  from cbbd.models.shot_info import ShotInfo
64
66
  from cbbd.models.shot_info_shooter import ShotInfoShooter
cbbd/api/__init__.py CHANGED
@@ -5,6 +5,7 @@ from cbbd.api.conferences_api import ConferencesApi
5
5
  from cbbd.api.games_api import GamesApi
6
6
  from cbbd.api.lines_api import LinesApi
7
7
  from cbbd.api.plays_api import PlaysApi
8
+ from cbbd.api.rankings_api import RankingsApi
8
9
  from cbbd.api.ratings_api import RatingsApi
9
10
  from cbbd.api.stats_api import StatsApi
10
11
  from cbbd.api.teams_api import TeamsApi
@@ -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.8.0
8
+ The version of the OpenAPI document: 1.10.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.8.0
8
+ The version of the OpenAPI document: 1.10.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.8.0
8
+ The version of the OpenAPI document: 1.10.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.8.0
8
+ The version of the OpenAPI document: 1.10.1
9
9
  Contact: admin@collegefootballdata.com
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -0,0 +1,228 @@
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.10.1
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
+ import re # noqa: F401
17
+ import io
18
+ import warnings
19
+
20
+ from pydantic import validate_arguments, ValidationError
21
+
22
+ from typing_extensions import Annotated
23
+ from pydantic import Field, StrictInt, StrictStr
24
+
25
+ from typing import List, Optional
26
+
27
+ from cbbd.models.poll_team_info import PollTeamInfo
28
+ from cbbd.models.season_type import SeasonType
29
+
30
+ from cbbd.api_client import ApiClient
31
+ from cbbd.api_response import ApiResponse
32
+ from cbbd.exceptions import ( # noqa: F401
33
+ ApiTypeError,
34
+ ApiValueError
35
+ )
36
+
37
+
38
+ class RankingsApi:
39
+ """NOTE: This class is auto generated by OpenAPI Generator
40
+ Ref: https://openapi-generator.tech
41
+
42
+ Do not edit the class manually.
43
+ """
44
+
45
+ def __init__(self, api_client=None) -> None:
46
+ if api_client is None:
47
+ api_client = ApiClient.get_default()
48
+ self.api_client = api_client
49
+
50
+ @validate_arguments
51
+ def get_rankings(self, season : Annotated[Optional[StrictInt], Field(description="Optional season filter")] = None, season_type : Annotated[Optional[SeasonType], Field(description="Optional season type filter")] = None, week : Annotated[Optional[StrictInt], Field(description="Optional week filter")] = None, poll_type : Annotated[Optional[StrictStr], Field(description="Optional poll type filter (\"ap\" or \"coaches\")")] = None, team : Annotated[Optional[StrictStr], Field(description="Optional team filter")] = None, conference : Annotated[Optional[StrictStr], Field(description="Optional conference filter")] = None, **kwargs) -> List[PollTeamInfo]: # noqa: E501
52
+ """get_rankings # noqa: E501
53
+
54
+ Retrieves historical poll data # noqa: E501
55
+ This method makes a synchronous HTTP request by default. To make an
56
+ asynchronous HTTP request, please pass async_req=True
57
+
58
+ >>> thread = api.get_rankings(season, season_type, week, poll_type, team, conference, async_req=True)
59
+ >>> result = thread.get()
60
+
61
+ :param season: Optional season filter
62
+ :type season: int
63
+ :param season_type: Optional season type filter
64
+ :type season_type: SeasonType
65
+ :param week: Optional week filter
66
+ :type week: int
67
+ :param poll_type: Optional poll type filter (\"ap\" or \"coaches\")
68
+ :type poll_type: str
69
+ :param team: Optional team filter
70
+ :type team: str
71
+ :param conference: Optional conference filter
72
+ :type conference: str
73
+ :param async_req: Whether to execute the request asynchronously.
74
+ :type async_req: bool, optional
75
+ :param _request_timeout: timeout setting for this request.
76
+ If one number provided, it will be total request
77
+ timeout. It can also be a pair (tuple) of
78
+ (connection, read) timeouts.
79
+ :return: Returns the result object.
80
+ If the method is called asynchronously,
81
+ returns the request thread.
82
+ :rtype: List[PollTeamInfo]
83
+ """
84
+ kwargs['_return_http_data_only'] = True
85
+ if '_preload_content' in kwargs:
86
+ message = "Error! Please call the get_rankings_with_http_info method with `_preload_content` instead and obtain raw data from ApiResponse.raw_data" # noqa: E501
87
+ raise ValueError(message)
88
+ return self.get_rankings_with_http_info(season, season_type, week, poll_type, team, conference, **kwargs) # noqa: E501
89
+
90
+ @validate_arguments
91
+ def get_rankings_with_http_info(self, season : Annotated[Optional[StrictInt], Field(description="Optional season filter")] = None, season_type : Annotated[Optional[SeasonType], Field(description="Optional season type filter")] = None, week : Annotated[Optional[StrictInt], Field(description="Optional week filter")] = None, poll_type : Annotated[Optional[StrictStr], Field(description="Optional poll type filter (\"ap\" or \"coaches\")")] = None, team : Annotated[Optional[StrictStr], Field(description="Optional team filter")] = None, conference : Annotated[Optional[StrictStr], Field(description="Optional conference filter")] = None, **kwargs) -> ApiResponse: # noqa: E501
92
+ """get_rankings # noqa: E501
93
+
94
+ Retrieves historical poll data # noqa: E501
95
+ This method makes a synchronous HTTP request by default. To make an
96
+ asynchronous HTTP request, please pass async_req=True
97
+
98
+ >>> thread = api.get_rankings_with_http_info(season, season_type, week, poll_type, team, conference, async_req=True)
99
+ >>> result = thread.get()
100
+
101
+ :param season: Optional season filter
102
+ :type season: int
103
+ :param season_type: Optional season type filter
104
+ :type season_type: SeasonType
105
+ :param week: Optional week filter
106
+ :type week: int
107
+ :param poll_type: Optional poll type filter (\"ap\" or \"coaches\")
108
+ :type poll_type: str
109
+ :param team: Optional team filter
110
+ :type team: str
111
+ :param conference: Optional conference filter
112
+ :type conference: str
113
+ :param async_req: Whether to execute the request asynchronously.
114
+ :type async_req: bool, optional
115
+ :param _preload_content: if False, the ApiResponse.data will
116
+ be set to none and raw_data will store the
117
+ HTTP response body without reading/decoding.
118
+ Default is True.
119
+ :type _preload_content: bool, optional
120
+ :param _return_http_data_only: response data instead of ApiResponse
121
+ object with status code, headers, etc
122
+ :type _return_http_data_only: bool, optional
123
+ :param _request_timeout: timeout setting for this request. If one
124
+ number provided, it will be total request
125
+ timeout. It can also be a pair (tuple) of
126
+ (connection, read) timeouts.
127
+ :param _request_auth: set to override the auth_settings for an a single
128
+ request; this effectively ignores the authentication
129
+ in the spec for a single request.
130
+ :type _request_auth: dict, optional
131
+ :type _content_type: string, optional: force content-type for the request
132
+ :return: Returns the result object.
133
+ If the method is called asynchronously,
134
+ returns the request thread.
135
+ :rtype: tuple(List[PollTeamInfo], status_code(int), headers(HTTPHeaderDict))
136
+ """
137
+
138
+ _params = locals()
139
+
140
+ _all_params = [
141
+ 'season',
142
+ 'season_type',
143
+ 'week',
144
+ 'poll_type',
145
+ 'team',
146
+ 'conference'
147
+ ]
148
+ _all_params.extend(
149
+ [
150
+ 'async_req',
151
+ '_return_http_data_only',
152
+ '_preload_content',
153
+ '_request_timeout',
154
+ '_request_auth',
155
+ '_content_type',
156
+ '_headers'
157
+ ]
158
+ )
159
+
160
+ # validate the arguments
161
+ for _key, _val in _params['kwargs'].items():
162
+ if _key not in _all_params:
163
+ raise ApiTypeError(
164
+ "Got an unexpected keyword argument '%s'"
165
+ " to method get_rankings" % _key
166
+ )
167
+ _params[_key] = _val
168
+ del _params['kwargs']
169
+
170
+ _collection_formats = {}
171
+
172
+ # process the path parameters
173
+ _path_params = {}
174
+
175
+ # process the query parameters
176
+ _query_params = []
177
+ if _params.get('season') is not None: # noqa: E501
178
+ _query_params.append(('season', _params['season']))
179
+
180
+ if _params.get('season_type') is not None: # noqa: E501
181
+ _query_params.append(('seasonType', _params['season_type'].value))
182
+
183
+ if _params.get('week') is not None: # noqa: E501
184
+ _query_params.append(('week', _params['week']))
185
+
186
+ if _params.get('poll_type') is not None: # noqa: E501
187
+ _query_params.append(('pollType', _params['poll_type']))
188
+
189
+ if _params.get('team') is not None: # noqa: E501
190
+ _query_params.append(('team', _params['team']))
191
+
192
+ if _params.get('conference') is not None: # noqa: E501
193
+ _query_params.append(('conference', _params['conference']))
194
+
195
+ # process the header parameters
196
+ _header_params = dict(_params.get('_headers', {}))
197
+ # process the form parameters
198
+ _form_params = []
199
+ _files = {}
200
+ # process the body parameter
201
+ _body_params = None
202
+ # set the HTTP header `Accept`
203
+ _header_params['Accept'] = self.api_client.select_header_accept(
204
+ ['application/json']) # noqa: E501
205
+
206
+ # authentication setting
207
+ _auth_settings = ['apiKey'] # noqa: E501
208
+
209
+ _response_types_map = {
210
+ '200': "List[PollTeamInfo]",
211
+ }
212
+
213
+ return self.api_client.call_api(
214
+ '/rankings', 'GET',
215
+ _path_params,
216
+ _query_params,
217
+ _header_params,
218
+ body=_body_params,
219
+ post_params=_form_params,
220
+ files=_files,
221
+ response_types_map=_response_types_map,
222
+ auth_settings=_auth_settings,
223
+ async_req=_params.get('async_req'),
224
+ _return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
225
+ _preload_content=_params.get('_preload_content', True),
226
+ _request_timeout=_params.get('_request_timeout'),
227
+ collection_formats=_collection_formats,
228
+ _request_auth=_params.get('_request_auth'))
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.8.0
8
+ The version of the OpenAPI document: 1.10.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.8.0
8
+ The version of the OpenAPI document: 1.10.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.8.0
8
+ The version of the OpenAPI document: 1.10.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.8.0
8
+ The version of the OpenAPI document: 1.10.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.8.0
8
+ The version of the OpenAPI document: 1.10.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.8.0/python'
81
+ self.user_agent = 'OpenAPI-Generator/1.10.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.8.0
8
+ The version of the OpenAPI document: 1.10.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.8.0\n"\
380
- "SDK Package Version: 1.8.0".\
379
+ "Version of the API: 1.10.1\n"\
380
+ "SDK Package Version: 1.10.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.8.0
8
+ The version of the OpenAPI document: 1.10.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.8.0
9
+ The version of the OpenAPI document: 1.10.1
10
10
  Contact: admin@collegefootballdata.com
11
11
  Generated by OpenAPI Generator (https://openapi-generator.tech)
12
12
 
@@ -35,6 +35,7 @@ from cbbd.models.play_info import PlayInfo
35
35
  from cbbd.models.play_info_participants_inner import PlayInfoParticipantsInner
36
36
  from cbbd.models.play_type_info import PlayTypeInfo
37
37
  from cbbd.models.player_season_stats import PlayerSeasonStats
38
+ from cbbd.models.poll_team_info import PollTeamInfo
38
39
  from cbbd.models.season_type import SeasonType
39
40
  from cbbd.models.shot_info import ShotInfo
40
41
  from cbbd.models.shot_info_shooter import ShotInfoShooter
@@ -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.8.0
8
+ The version of the OpenAPI document: 1.10.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.8.0
8
+ The version of the OpenAPI document: 1.10.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.8.0
8
+ The version of the OpenAPI document: 1.10.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.8.0
8
+ The version of the OpenAPI document: 1.10.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.8.0
8
+ The version of the OpenAPI document: 1.10.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.8.0
8
+ The version of the OpenAPI document: 1.10.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.8.0
8
+ The version of the OpenAPI document: 1.10.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.8.0
8
+ The version of the OpenAPI document: 1.10.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.8.0
8
+ The version of the OpenAPI document: 1.10.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.8.0
8
+ The version of the OpenAPI document: 1.10.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.8.0
8
+ The version of the OpenAPI document: 1.10.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.8.0
8
+ The version of the OpenAPI document: 1.10.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.8.0
8
+ The version of the OpenAPI document: 1.10.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.8.0
8
+ The version of the OpenAPI document: 1.10.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.8.0
8
+ The version of the OpenAPI document: 1.10.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.8.0
8
+ The version of the OpenAPI document: 1.10.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.8.0
8
+ The version of the OpenAPI document: 1.10.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.8.0
8
+ The version of the OpenAPI document: 1.10.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.8.0
8
+ The version of the OpenAPI document: 1.10.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.8.0
8
+ The version of the OpenAPI document: 1.10.1
9
9
  Contact: admin@collegefootballdata.com
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -60,7 +60,8 @@ class PlayerSeasonStats(BaseModel):
60
60
  three_point_field_goals: TeamSeasonUnitStatsFieldGoals = Field(default=..., alias="threePointFieldGoals")
61
61
  free_throws: TeamSeasonUnitStatsFieldGoals = Field(default=..., alias="freeThrows")
62
62
  rebounds: TeamSeasonUnitStatsRebounds = Field(...)
63
- __properties = ["season", "seasonLabel", "teamId", "team", "conference", "athleteId", "athleteSourceId", "name", "position", "games", "starts", "minutes", "points", "turnovers", "fouls", "assists", "steals", "blocks", "usage", "offensiveRating", "defensiveRating", "netRating", "effectiveFieldGoalPct", "trueShootingPct", "assistsTurnoverRatio", "freeThrowRate", "offensiveReboundPct", "fieldGoals", "twoPointFieldGoals", "threePointFieldGoals", "freeThrows", "rebounds"]
63
+ win_shares: TeamSeasonUnitStatsRebounds = Field(default=..., alias="winShares")
64
+ __properties = ["season", "seasonLabel", "teamId", "team", "conference", "athleteId", "athleteSourceId", "name", "position", "games", "starts", "minutes", "points", "turnovers", "fouls", "assists", "steals", "blocks", "usage", "offensiveRating", "defensiveRating", "netRating", "effectiveFieldGoalPct", "trueShootingPct", "assistsTurnoverRatio", "freeThrowRate", "offensiveReboundPct", "fieldGoals", "twoPointFieldGoals", "threePointFieldGoals", "freeThrows", "rebounds", "winShares"]
64
65
 
65
66
  class Config:
66
67
  """Pydantic configuration"""
@@ -101,6 +102,9 @@ class PlayerSeasonStats(BaseModel):
101
102
  # override the default output from pydantic by calling `to_dict()` of rebounds
102
103
  if self.rebounds:
103
104
  _dict['rebounds'] = self.rebounds.to_dict()
105
+ # override the default output from pydantic by calling `to_dict()` of win_shares
106
+ if self.win_shares:
107
+ _dict['winShares'] = self.win_shares.to_dict()
104
108
  # set to None if conference (nullable) is None
105
109
  # and __fields_set__ contains the field
106
110
  if self.conference is None and "conference" in self.__fields_set__:
@@ -224,7 +228,8 @@ class PlayerSeasonStats(BaseModel):
224
228
  "two_point_field_goals": TeamSeasonUnitStatsFieldGoals.from_dict(obj.get("twoPointFieldGoals")) if obj.get("twoPointFieldGoals") is not None else None,
225
229
  "three_point_field_goals": TeamSeasonUnitStatsFieldGoals.from_dict(obj.get("threePointFieldGoals")) if obj.get("threePointFieldGoals") is not None else None,
226
230
  "free_throws": TeamSeasonUnitStatsFieldGoals.from_dict(obj.get("freeThrows")) if obj.get("freeThrows") is not None else None,
227
- "rebounds": TeamSeasonUnitStatsRebounds.from_dict(obj.get("rebounds")) if obj.get("rebounds") is not None else None
231
+ "rebounds": TeamSeasonUnitStatsRebounds.from_dict(obj.get("rebounds")) if obj.get("rebounds") is not None else None,
232
+ "win_shares": TeamSeasonUnitStatsRebounds.from_dict(obj.get("winShares")) if obj.get("winShares") is not None else None
228
233
  })
229
234
  return _obj
230
235
 
@@ -0,0 +1,118 @@
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.10.1
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
+ from datetime import datetime
22
+ from typing import Optional, Union
23
+ from pydantic import BaseModel, Field, StrictFloat, StrictInt, StrictStr
24
+ from cbbd.models.season_type import SeasonType
25
+
26
+ class PollTeamInfo(BaseModel):
27
+ """
28
+ PollTeamInfo
29
+ """
30
+ season: StrictInt = Field(...)
31
+ season_type: SeasonType = Field(default=..., alias="seasonType")
32
+ week: StrictInt = Field(...)
33
+ poll_date: Optional[datetime] = Field(default=..., alias="pollDate")
34
+ poll_type: StrictStr = Field(default=..., alias="pollType")
35
+ team_id: Union[StrictFloat, StrictInt] = Field(default=..., alias="teamId")
36
+ team: StrictStr = Field(...)
37
+ conference: Optional[StrictStr] = Field(...)
38
+ ranking: Optional[Union[StrictFloat, StrictInt]] = Field(...)
39
+ points: Optional[Union[StrictFloat, StrictInt]] = Field(...)
40
+ first_place_votes: Optional[Union[StrictFloat, StrictInt]] = Field(default=..., alias="firstPlaceVotes")
41
+ __properties = ["season", "seasonType", "week", "pollDate", "pollType", "teamId", "team", "conference", "ranking", "points", "firstPlaceVotes"]
42
+
43
+ class Config:
44
+ """Pydantic configuration"""
45
+ allow_population_by_field_name = True
46
+ validate_assignment = True
47
+
48
+ def to_str(self) -> str:
49
+ """Returns the string representation of the model using alias"""
50
+ return pprint.pformat(self.dict(by_alias=True))
51
+
52
+ def to_json(self) -> str:
53
+ """Returns the JSON representation of the model using alias"""
54
+ return json.dumps(self.to_dict())
55
+
56
+ @classmethod
57
+ def from_json(cls, json_str: str) -> PollTeamInfo:
58
+ """Create an instance of PollTeamInfo from a JSON string"""
59
+ return cls.from_dict(json.loads(json_str))
60
+
61
+ def to_dict(self):
62
+ """Returns the dictionary representation of the model using alias"""
63
+ _dict = self.dict(by_alias=True,
64
+ exclude={
65
+ },
66
+ exclude_none=True)
67
+ # set to None if poll_date (nullable) is None
68
+ # and __fields_set__ contains the field
69
+ if self.poll_date is None and "poll_date" in self.__fields_set__:
70
+ _dict['pollDate'] = None
71
+
72
+ # set to None if conference (nullable) is None
73
+ # and __fields_set__ contains the field
74
+ if self.conference is None and "conference" in self.__fields_set__:
75
+ _dict['conference'] = None
76
+
77
+ # set to None if ranking (nullable) is None
78
+ # and __fields_set__ contains the field
79
+ if self.ranking is None and "ranking" in self.__fields_set__:
80
+ _dict['ranking'] = None
81
+
82
+ # set to None if points (nullable) is None
83
+ # and __fields_set__ contains the field
84
+ if self.points is None and "points" in self.__fields_set__:
85
+ _dict['points'] = None
86
+
87
+ # set to None if first_place_votes (nullable) is None
88
+ # and __fields_set__ contains the field
89
+ if self.first_place_votes is None and "first_place_votes" in self.__fields_set__:
90
+ _dict['firstPlaceVotes'] = None
91
+
92
+ return _dict
93
+
94
+ @classmethod
95
+ def from_dict(cls, obj: dict) -> PollTeamInfo:
96
+ """Create an instance of PollTeamInfo from a dict"""
97
+ if obj is None:
98
+ return None
99
+
100
+ if not isinstance(obj, dict):
101
+ return PollTeamInfo.parse_obj(obj)
102
+
103
+ _obj = PollTeamInfo.parse_obj({
104
+ "season": obj.get("season"),
105
+ "season_type": obj.get("seasonType"),
106
+ "week": obj.get("week"),
107
+ "poll_date": obj.get("pollDate"),
108
+ "poll_type": obj.get("pollType"),
109
+ "team_id": obj.get("teamId"),
110
+ "team": obj.get("team"),
111
+ "conference": obj.get("conference"),
112
+ "ranking": obj.get("ranking"),
113
+ "points": obj.get("points"),
114
+ "first_place_votes": obj.get("firstPlaceVotes")
115
+ })
116
+ return _obj
117
+
118
+
@@ -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.8.0
8
+ The version of the OpenAPI document: 1.10.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.8.0
8
+ The version of the OpenAPI document: 1.10.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.8.0
8
+ The version of the OpenAPI document: 1.10.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.8.0
8
+ The version of the OpenAPI document: 1.10.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.8.0
8
+ The version of the OpenAPI document: 1.10.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.8.0
8
+ The version of the OpenAPI document: 1.10.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.8.0
8
+ The version of the OpenAPI document: 1.10.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.8.0
8
+ The version of the OpenAPI document: 1.10.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.8.0
8
+ The version of the OpenAPI document: 1.10.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.8.0
8
+ The version of the OpenAPI document: 1.10.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.8.0
8
+ The version of the OpenAPI document: 1.10.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.8.0
8
+ The version of the OpenAPI document: 1.10.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.8.0
8
+ The version of the OpenAPI document: 1.10.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.8.0
8
+ The version of the OpenAPI document: 1.10.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.8.0
8
+ The version of the OpenAPI document: 1.10.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.8.0
8
+ The version of the OpenAPI document: 1.10.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.8.0
8
+ The version of the OpenAPI document: 1.10.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.8.0
8
+ The version of the OpenAPI document: 1.10.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.8.0
3
+ Version: 1.10.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,60 @@
1
+ cbbd/__init__.py,sha256=GylSmu3jNiLcNHKzZeOnKJsTkVtl9Zvju6FD4xj4aGs,3746
2
+ cbbd/api_client.py,sha256=YT_Tcbj94qF1wJom1kJUFFbrPtGmYPklPMYy7X9vtks,29896
3
+ cbbd/api_response.py,sha256=uCehWdXXDnAO2HAHGKe0SgpQ_mJiGDbcu-BHDF3n_IM,852
4
+ cbbd/configuration.py,sha256=y2b_3UNhA7SrAl2MrSYxSf40SoN902IiwknwZxYK0mU,14799
5
+ cbbd/exceptions.py,sha256=xyQsp4FEzrsDXP1Ov8uGcT-6RRB3pUno2kr6VPAyWbA,5546
6
+ cbbd/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
7
+ cbbd/rest.py,sha256=ePlhnjmyE_QUfbHXyC0C9zP6aVxL5Qe6LZvbYPDgnls,14163
8
+ cbbd/api/__init__.py,sha256=U29aKlFG5cMzdwI6-aCdcGjclNGcvi0Me9-UNtja-6I,432
9
+ cbbd/api/conferences_api.py,sha256=qiwkIs7iyjDArza6vuyRwxcRE5iVJ4JWWODFRuWu_l8,13079
10
+ cbbd/api/games_api.py,sha256=QgTmbYlkYun-10uW13uUU8vwEhrp1_K5QH_BwpO5mOc,41195
11
+ cbbd/api/lines_api.py,sha256=Xh7200K9SE0ka99y_fPJyahptnypR2tjQU2vN7__amY,15757
12
+ cbbd/api/plays_api.py,sha256=eSTItL58BL_HxRjPHALyagY5LDTNm5DFSnbStPCPUac,35262
13
+ cbbd/api/rankings_api.py,sha256=PV_fXzza1GolCN9UH9CuSfhPbowehWnrT4dUDpBkAMM,10005
14
+ cbbd/api/ratings_api.py,sha256=uTtDW4dKNkggJHrhLT-ZiM-q7V7Tfs2r-ctRiA-Iq_4,15679
15
+ cbbd/api/stats_api.py,sha256=vBQVnP27C5tJRHnSAS7yhzKfggCQEaZfXDgekivaRmw,20183
16
+ cbbd/api/teams_api.py,sha256=9OVRODcbjzKXFV9uknpAFFIW75CUqOSb0jNmiBAlna0,14208
17
+ cbbd/api/venues_api.py,sha256=Jrm0uL_A0ZhTmdqKNB_ukx0LjLdG2Oabp8ljEZJAEos,6568
18
+ cbbd/models/__init__.py,sha256=TC9oV4drSdYEDmi01NjVKg0MjP-NtjPlJcGkUWChPXw,2907
19
+ cbbd/models/adjusted_efficiency_info.py,sha256=KpBpZYi0L_SwlZfKK6JKY68CykLoksENtEWwW38oMEU,2910
20
+ cbbd/models/conference_history.py,sha256=2dgAergao4wpEoMowgT4jAIUpTMEwWGqGmlH4BBAlgI,3084
21
+ cbbd/models/conference_history_teams_inner.py,sha256=7YutQqtAxu__ExsqYrMS0Y6Cb6X8utlkI7OMMDwq7Pw,3130
22
+ cbbd/models/conference_info.py,sha256=mdiLFqCTesQWDbryesYIbZd8wGXUqh7cQGE2mLJJvZY,2437
23
+ cbbd/models/game_box_score_players.py,sha256=CW_l6vMV5xp3klLLVF5zufLjyPZR-xH4_rpodE6259A,6356
24
+ cbbd/models/game_box_score_players_players_inner.py,sha256=Ola4-QY1DcueTGIYCDU4eB7aKQCAeHN8TODJA0NMWBI,12093
25
+ cbbd/models/game_box_score_team.py,sha256=chgZPEPGEQsQSG-6Q6uBjtAwk_LO54y7bZq5E4sSmrQ,6387
26
+ cbbd/models/game_box_score_team_stats.py,sha256=je0wLllvY9oj4ADh4GK-HorjplKcU_9mqscRvhzo_XY,8687
27
+ cbbd/models/game_box_score_team_stats_points.py,sha256=XNOD3DkHDnb-uSIFsKKca7185aQwWod7JF36Jeox9ys,4298
28
+ cbbd/models/game_info.py,sha256=IareMrZh9TJ9nNUF3uQMlw3DMffGU6qPjm45-Fuobrk,9986
29
+ cbbd/models/game_line_info.py,sha256=PS6YgTjbsqz3aTJReDzJo10dU-3IqYN7Br4WpwFLEew,4371
30
+ cbbd/models/game_lines.py,sha256=nqSc1dmbCCjLFuJ-fQEn_Zj9wEqHvZYoi5oE6dDetrA,5077
31
+ cbbd/models/game_media_info.py,sha256=sNj2a_1IxDmVB4Y4mBfaV4yD_jyRD1cxDmvzWmXkGfU,5672
32
+ cbbd/models/game_media_info_broadcasts_inner.py,sha256=Le_TCK2q5BnwrCGaCiep5_x0yQSsr-wQ_vrQ15gUa2g,2325
33
+ cbbd/models/game_status.py,sha256=Wxitq-SpZGjYSor5srK4HoFHiw3jpmtO5wlvY-IXiVc,949
34
+ cbbd/models/line_provider_info.py,sha256=s6GsQiEBLW3IBgsuASwy1Z-ZHYxyb_H-pMeQaVwbFqA,2094
35
+ cbbd/models/play_info.py,sha256=UFjd0TYy7e0QTEEYTv273CMR29oe_szVP_1eXcmQtoU,9663
36
+ cbbd/models/play_info_participants_inner.py,sha256=KEQbdFORlsj2f7fvImOXIIqgDAmGnq8HX4AiRf4FhNw,2166
37
+ cbbd/models/play_type_info.py,sha256=e43TwYjnPYuR8UwsFln7u0s2y7E2x4kyBqXIS1Yx10s,2062
38
+ cbbd/models/player_season_stats.py,sha256=sAC2RP4z85Tt8MERorYBWwRGhRXvvNwIxkBpfOWuR9I,12119
39
+ cbbd/models/poll_team_info.py,sha256=inDGrayjx7O-g9xO6HsIdnRYZeq-EO0-1fk2W19JdHA,4422
40
+ cbbd/models/season_type.py,sha256=2kNUKH3ziQ4a6NBuwPXUDRkfIw9JWNB9ooEgKgkNDE8,895
41
+ cbbd/models/shot_info.py,sha256=r947bkHXmoLEs8L8AL0sXvppd7U9fs0fcEelcjRAK4s,3711
42
+ cbbd/models/shot_info_shooter.py,sha256=QILIZm-evtu198Y0jna3ZvBYFNpZWfJO9EW4K2qlSLM,2086
43
+ cbbd/models/srs_info.py,sha256=b6IszWiOj42bCSzv5lhIncP9j3ObDVgmIpXWbbX1U_w,2395
44
+ cbbd/models/team_info.py,sha256=JyF8cFoSn5tH8pTZHPgXfN17A5TizoNlwcoFERt4p_A,6666
45
+ cbbd/models/team_roster.py,sha256=XJo_EybUjnEmq-8Csb120lvR3rDQ0V6dNfDqiSP3nX4,3295
46
+ cbbd/models/team_roster_player.py,sha256=r9GEgVv8kc14rZ5az_sBWjGxU6fSxXPP5__pSyMD5jA,5354
47
+ cbbd/models/team_roster_player_hometown.py,sha256=4vhLFSAUDuY0m9Ql-2awmMvN9tqIzR63GyczgXp94J0,2907
48
+ cbbd/models/team_season_stats.py,sha256=2LOcF_9sqSEpr9aSsODi-93S_o1Cr3KxGLmMNEeQO0g,4263
49
+ cbbd/models/team_season_unit_stats.py,sha256=6I6zkRWAAFucs5WASqHrYabocVLiN46USt3BaeDSrm8,8287
50
+ cbbd/models/team_season_unit_stats_field_goals.py,sha256=u6IJlNWe9rIhdh0GhN-UUnUtUIUfZn2AX1gsTmkZbmc,3027
51
+ cbbd/models/team_season_unit_stats_fouls.py,sha256=YBlrQnlcwhA4XGHXEQCMjvoi2cPmnpWV_bc0SAYQiZc,3035
52
+ cbbd/models/team_season_unit_stats_four_factors.py,sha256=rLC_quEYKOWtYxF9pdkt4SwF1J_nvbhUtrNrqgkBg5c,3884
53
+ cbbd/models/team_season_unit_stats_points.py,sha256=HlPFwnyFz7xU5JShDCAr6uW60iZQg6QG3Lt7hiDLiFs,3499
54
+ cbbd/models/team_season_unit_stats_rebounds.py,sha256=Z-gRCwuta3rNt_Kkq6qgJ4tguTmp5ormKMxOpoZotI0,3067
55
+ cbbd/models/team_season_unit_stats_turnovers.py,sha256=4zJC2ytTNzfkwJu2gNIvSdr6IYo0_5Nno_86rfU3LzU,2764
56
+ cbbd/models/venue_info.py,sha256=ijix0-ps7I6kLWK0lXcVC8-VJU2i5n6PHehjzBR5ZR4,3332
57
+ cbbd-1.10.1.dist-info/METADATA,sha256=i5QkbQtIIC5rTspRyQAx_6GzHub7ySvTR6WzRsqijH4,764
58
+ cbbd-1.10.1.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
59
+ cbbd-1.10.1.dist-info/top_level.txt,sha256=d8efSEMxRPpV_X-2jtQvf9S-EI4HoFQpCEOZCjDxT24,5
60
+ cbbd-1.10.1.dist-info/RECORD,,
@@ -1,58 +0,0 @@
1
- cbbd/__init__.py,sha256=gJgE66dVRqo8xoLAkxjjlo35fsaCuj1EhRbf-dLDXbA,3646
2
- cbbd/api_client.py,sha256=JOlWXELBbtIqYu-FibC1Icxs-qr9LivLhaYfa0_tsog,29894
3
- cbbd/api_response.py,sha256=uCehWdXXDnAO2HAHGKe0SgpQ_mJiGDbcu-BHDF3n_IM,852
4
- cbbd/configuration.py,sha256=6YS6HDaDiLkNoddjy8COwpHNRW9CoXXeiOYKajXXvbA,14796
5
- cbbd/exceptions.py,sha256=WrmvBNL_IlTfV2Jq51M4R4nGWN6CCQ0xdrLJHUXTiQk,5545
6
- cbbd/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
7
- cbbd/rest.py,sha256=0rYzUZsRH2dyM3zE4_-qUdQmuObeZGu_9blkMCHxq5s,14162
8
- cbbd/api/__init__.py,sha256=eZkj51ZLdv2e_6U9bEPVhek2eV3QDX6xyLoDQKMaGF4,386
9
- cbbd/api/conferences_api.py,sha256=puXkWpaY9_PJqoDlSrVBD2Kw_bxjL63jZ8radNjI5UI,13078
10
- cbbd/api/games_api.py,sha256=UbtzO6uDpmZEvyR5IjTldZi3b3xRwIvshPhXxIpwxWk,41194
11
- cbbd/api/lines_api.py,sha256=FE4UFg4xv5tijWFK6-cvJmh8ecWzh6_2TQ953yBr2co,15756
12
- cbbd/api/plays_api.py,sha256=1CyrTpD4ayhh4-2XSLGHLuEcuU6xjpgSbpqqp_kaTtQ,35261
13
- cbbd/api/ratings_api.py,sha256=ubsnsf8t2KIaCyFSow3US5U6M4SLerbDChDuLezmC5I,15678
14
- cbbd/api/stats_api.py,sha256=1eci5vMJMuOgIEbg-g5E7zRHyYVw7DssiGJAR625lbI,20182
15
- cbbd/api/teams_api.py,sha256=ZnC0bylXgyypNHDgnKN84AiLhljy4iHFuY83X6-gyEk,14207
16
- cbbd/api/venues_api.py,sha256=EGMkqwfKNEtYtcelI2JuvFToxUjqvg2tT_50lG2xMRQ,6567
17
- cbbd/models/__init__.py,sha256=TlgDINr8YPL3rRAMQLi9uWAXHjohVIsD9RgifZaDirY,2854
18
- cbbd/models/adjusted_efficiency_info.py,sha256=yzNVIb1QfGu55t5ac3ILFz4Z0dMOSCsnXueECDuVWSc,2909
19
- cbbd/models/conference_history.py,sha256=Zy48y78GnXlYy1wAxlvhT6wYcjQxxvCjoH_RIuP44cc,3083
20
- cbbd/models/conference_history_teams_inner.py,sha256=7ddqAkrWB_Z6WTUkN1qcztgXAOet0KSSo7aMCTIcdww,3129
21
- cbbd/models/conference_info.py,sha256=7j5koY-SqHQjjJlkcZELh859E-uZsV9JmJ6N7Babsm4,2436
22
- cbbd/models/game_box_score_players.py,sha256=ulgcws1vheusBRENimlHkRuUe8lKjM8P31XJtw6CiqA,6355
23
- cbbd/models/game_box_score_players_players_inner.py,sha256=9rGZunmn-gHJdh4aW96jvEec_hByuFFs3LzVaTPBQaA,12092
24
- cbbd/models/game_box_score_team.py,sha256=qmwIFsKhRMwWiNawJsn1U_Q5LyL0AxYhCTn7jOC3Q_0,6386
25
- cbbd/models/game_box_score_team_stats.py,sha256=mOazHK7TTZ1_ZKFjG5iEQnt_QN3obqlU7-XBn9t4df8,8686
26
- cbbd/models/game_box_score_team_stats_points.py,sha256=HtzMGAqxCaR-4BnIeUi6xs0eY4ZOR8vPwwDHNIA-FKQ,4297
27
- cbbd/models/game_info.py,sha256=WnTxneoOm7o3t3g2Kmmmmo7DSDATxLzy5NoCXrEsbL0,9985
28
- cbbd/models/game_line_info.py,sha256=wtyeOUi30OQwb100_Q8shTSWf4QK1enWiHqiyKGAO6M,4370
29
- cbbd/models/game_lines.py,sha256=IjfvcBrpz92gTZF6v06FVPY9Nxy242EHYIjmzWrtKYY,5076
30
- cbbd/models/game_media_info.py,sha256=RO-31iwUrvCaTJ6TwMroKReKocbBIhD96YhJu_R-9Bs,5671
31
- cbbd/models/game_media_info_broadcasts_inner.py,sha256=36FGukan_HqpaNyySdFZR2tSo1r0M-U8KgRkRmKjx1Q,2324
32
- cbbd/models/game_status.py,sha256=Auy2pl8RL9HDuzKI94o0Lu4pLbAiXcNdHCbEWwiwehA,948
33
- cbbd/models/line_provider_info.py,sha256=-OqWYYYRa0hwTvsU9KjVhSuCphGXQI6_-LgEXdL9KS4,2093
34
- cbbd/models/play_info.py,sha256=ShnuRNAyM3YVoHKSasHwudnxSsRCm9aSgKjhCcGb6I8,9662
35
- cbbd/models/play_info_participants_inner.py,sha256=NHTf6RFu-aj46MTlolUG1VMy-uXnZyv1ip27CdDAuH4,2165
36
- cbbd/models/play_type_info.py,sha256=is-ho9POv1IdicPffl0GSxxrX4SxROKTc7OSk2VC2GM,2061
37
- cbbd/models/player_season_stats.py,sha256=-iedXXQg8WERz9BXOn9hDtXiFQZwOXsDFKyalIApK_4,11712
38
- cbbd/models/season_type.py,sha256=94EeBjuPy4oj2AE4-QNirhzoSxVcGahY38MeBBxZuj8,894
39
- cbbd/models/shot_info.py,sha256=coGoe9ibu6m6XcY1Cmwo578Ck5MNI7o0BsiMiFlDaww,3710
40
- cbbd/models/shot_info_shooter.py,sha256=RFvRKDObq7YzUzfTs_a_viefbMBH3FkC4RSoj4uaeaM,2085
41
- cbbd/models/srs_info.py,sha256=6PvSRq46ZZKSrw9AkULDy8MKre7cYrwtF2N583Vhk6c,2394
42
- cbbd/models/team_info.py,sha256=t4wtS5zljUwm_5n57wTu0l4uxcLgNCN5U8YMbG8A_dA,6665
43
- cbbd/models/team_roster.py,sha256=2Q39Fz9PC-9QV7wuZme3AqG2eIdWz4urzNzMLGiFg10,3294
44
- cbbd/models/team_roster_player.py,sha256=dA91In_prqb5rO2cSCYQWJrHdzYW8knCqG8L6-A3pVw,5353
45
- cbbd/models/team_roster_player_hometown.py,sha256=NBzYepFn2ZvrgCwIEtwXtj-42-jTPQ_IyD69mJkpdpo,2906
46
- cbbd/models/team_season_stats.py,sha256=M-4ZXPRMkMNsPKHUdU3F_n6xP_be_DlNu-O8WfPTAf0,4262
47
- cbbd/models/team_season_unit_stats.py,sha256=UKpZ6-9925oyH_hqtAh5VzRsNP9oWgOR5_tYrZpo5sc,8286
48
- cbbd/models/team_season_unit_stats_field_goals.py,sha256=22uIdDliyKHRWHWy7XkaUT197sUVNdRFyp7dAogh6SE,3026
49
- cbbd/models/team_season_unit_stats_fouls.py,sha256=RY0BPzHTr8c5lxXNhgS9H8KWDCH2dl6kp99MS5CFjfc,3034
50
- cbbd/models/team_season_unit_stats_four_factors.py,sha256=EA0kWQZgyGKMg2dszYIvw0Q5FAlVTf_AG4TrSkLbwL0,3883
51
- cbbd/models/team_season_unit_stats_points.py,sha256=zENuvWvUyyT0257x2wqaNBd1J9kSqGmdIFxEFFL-bCU,3498
52
- cbbd/models/team_season_unit_stats_rebounds.py,sha256=rPn8ZF-3mveFXo857E7y5OcYnVImyBppjXfd9oBSRdc,3066
53
- cbbd/models/team_season_unit_stats_turnovers.py,sha256=psGfFFEoyU4T9mqOLMJaiHaKTzllDm0o5TFBetKL16s,2763
54
- cbbd/models/venue_info.py,sha256=cQ24RQSe4ELwWtdHuRLINtQMmWYDyRp8j8j5nT0wAMA,3331
55
- cbbd-1.8.0.dist-info/METADATA,sha256=n_zL1iM3na27TWOE8z3Z6ycMsKSi6mYAs4ynQQdcr9M,763
56
- cbbd-1.8.0.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
57
- cbbd-1.8.0.dist-info/top_level.txt,sha256=d8efSEMxRPpV_X-2jtQvf9S-EI4HoFQpCEOZCjDxT24,5
58
- cbbd-1.8.0.dist-info/RECORD,,
File without changes