cbbd 1.3.0__py3-none-any.whl → 1.5.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 (55) hide show
  1. cbbd/__init__.py +5 -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/ratings_api.py +360 -0
  8. cbbd/api/stats_api.py +1 -1
  9. cbbd/api/teams_api.py +1 -1
  10. cbbd/api/venues_api.py +1 -1
  11. cbbd/api_client.py +2 -2
  12. cbbd/configuration.py +3 -3
  13. cbbd/exceptions.py +1 -1
  14. cbbd/models/__init__.py +3 -1
  15. cbbd/models/adjusted_efficiency_info.py +84 -0
  16. cbbd/models/conference_history.py +1 -1
  17. cbbd/models/conference_history_teams_inner.py +1 -1
  18. cbbd/models/conference_info.py +1 -1
  19. cbbd/models/game_box_score_players.py +1 -1
  20. cbbd/models/game_box_score_players_players_inner.py +1 -1
  21. cbbd/models/game_box_score_team.py +1 -1
  22. cbbd/models/game_box_score_team_stats.py +1 -1
  23. cbbd/models/game_box_score_team_stats_points.py +1 -1
  24. cbbd/models/game_info.py +1 -1
  25. cbbd/models/game_line_info.py +1 -1
  26. cbbd/models/game_lines.py +1 -1
  27. cbbd/models/game_media_info.py +1 -1
  28. cbbd/models/game_media_info_broadcasts_inner.py +1 -1
  29. cbbd/models/game_status.py +1 -1
  30. cbbd/models/line_provider_info.py +1 -1
  31. cbbd/models/play_info.py +1 -1
  32. cbbd/models/play_info_participants_inner.py +1 -1
  33. cbbd/models/play_type_info.py +1 -1
  34. cbbd/models/player_season_stats.py +1 -1
  35. cbbd/models/season_type.py +1 -1
  36. cbbd/models/srs_info.py +80 -0
  37. cbbd/models/team_info.py +1 -1
  38. cbbd/models/team_roster.py +1 -1
  39. cbbd/models/team_roster_player.py +1 -1
  40. cbbd/models/team_roster_player_hometown.py +1 -1
  41. cbbd/models/team_season_stats.py +1 -1
  42. cbbd/models/team_season_unit_stats.py +1 -1
  43. cbbd/models/team_season_unit_stats_field_goals.py +1 -1
  44. cbbd/models/team_season_unit_stats_fouls.py +1 -1
  45. cbbd/models/team_season_unit_stats_four_factors.py +1 -1
  46. cbbd/models/team_season_unit_stats_points.py +1 -1
  47. cbbd/models/team_season_unit_stats_rebounds.py +1 -1
  48. cbbd/models/team_season_unit_stats_turnovers.py +1 -1
  49. cbbd/models/venue_info.py +1 -1
  50. cbbd/rest.py +1 -1
  51. {cbbd-1.3.0.dist-info → cbbd-1.5.0.dist-info}/METADATA +1 -1
  52. cbbd-1.5.0.dist-info/RECORD +56 -0
  53. cbbd-1.3.0.dist-info/RECORD +0 -53
  54. {cbbd-1.3.0.dist-info → cbbd-1.5.0.dist-info}/WHEEL +0 -0
  55. {cbbd-1.3.0.dist-info → cbbd-1.5.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.3.0
10
+ The version of the OpenAPI document: 1.5.0
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.3.0"
18
+ __version__ = "1.5.0"
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.ratings_api import RatingsApi
25
26
  from cbbd.api.stats_api import StatsApi
26
27
  from cbbd.api.teams_api import TeamsApi
27
28
  from cbbd.api.venues_api import VenuesApi
@@ -38,6 +39,7 @@ from cbbd.exceptions import ApiAttributeError
38
39
  from cbbd.exceptions import ApiException
39
40
 
40
41
  # import models into sdk package
42
+ from cbbd.models.adjusted_efficiency_info import AdjustedEfficiencyInfo
41
43
  from cbbd.models.conference_history import ConferenceHistory
42
44
  from cbbd.models.conference_history_teams_inner import ConferenceHistoryTeamsInner
43
45
  from cbbd.models.conference_info import ConferenceInfo
@@ -58,6 +60,7 @@ from cbbd.models.play_info_participants_inner import PlayInfoParticipantsInner
58
60
  from cbbd.models.play_type_info import PlayTypeInfo
59
61
  from cbbd.models.player_season_stats import PlayerSeasonStats
60
62
  from cbbd.models.season_type import SeasonType
63
+ from cbbd.models.srs_info import SrsInfo
61
64
  from cbbd.models.team_info import TeamInfo
62
65
  from cbbd.models.team_roster import TeamRoster
63
66
  from cbbd.models.team_roster_player import TeamRosterPlayer
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.ratings_api import RatingsApi
8
9
  from cbbd.api.stats_api import StatsApi
9
10
  from cbbd.api.teams_api import TeamsApi
10
11
  from cbbd.api.venues_api import VenuesApi
@@ -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.3.0
8
+ The version of the OpenAPI document: 1.5.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.3.0
8
+ The version of the OpenAPI document: 1.5.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.3.0
8
+ The version of the OpenAPI document: 1.5.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.3.0
8
+ The version of the OpenAPI document: 1.5.0
9
9
  Contact: admin@collegefootballdata.com
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -0,0 +1,360 @@
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.5.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
+ 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.adjusted_efficiency_info import AdjustedEfficiencyInfo
28
+ from cbbd.models.srs_info import SrsInfo
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 RatingsApi:
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_adjusted_efficiency(self, season : Annotated[Optional[StrictInt], Field(description="Optional season filter")] = None, team : Annotated[Optional[StrictStr], Field(description="Optional team filter")] = None, conference : Annotated[Optional[StrictStr], Field(description="Optional conference abbreviation filter")] = None, **kwargs) -> List[AdjustedEfficiencyInfo]: # noqa: E501
52
+ """get_adjusted_efficiency # noqa: E501
53
+
54
+ Retrieves adjusted efficiency ratings for the provided season, team, or conference. # 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_adjusted_efficiency(season, team, conference, async_req=True)
59
+ >>> result = thread.get()
60
+
61
+ :param season: Optional season filter
62
+ :type season: int
63
+ :param team: Optional team filter
64
+ :type team: str
65
+ :param conference: Optional conference abbreviation filter
66
+ :type conference: str
67
+ :param async_req: Whether to execute the request asynchronously.
68
+ :type async_req: bool, optional
69
+ :param _request_timeout: timeout setting for this request.
70
+ If one number provided, it will be total request
71
+ timeout. It can also be a pair (tuple) of
72
+ (connection, read) timeouts.
73
+ :return: Returns the result object.
74
+ If the method is called asynchronously,
75
+ returns the request thread.
76
+ :rtype: List[AdjustedEfficiencyInfo]
77
+ """
78
+ kwargs['_return_http_data_only'] = True
79
+ if '_preload_content' in kwargs:
80
+ message = "Error! Please call the get_adjusted_efficiency_with_http_info method with `_preload_content` instead and obtain raw data from ApiResponse.raw_data" # noqa: E501
81
+ raise ValueError(message)
82
+ return self.get_adjusted_efficiency_with_http_info(season, team, conference, **kwargs) # noqa: E501
83
+
84
+ @validate_arguments
85
+ def get_adjusted_efficiency_with_http_info(self, season : Annotated[Optional[StrictInt], Field(description="Optional season filter")] = None, team : Annotated[Optional[StrictStr], Field(description="Optional team filter")] = None, conference : Annotated[Optional[StrictStr], Field(description="Optional conference abbreviation filter")] = None, **kwargs) -> ApiResponse: # noqa: E501
86
+ """get_adjusted_efficiency # noqa: E501
87
+
88
+ Retrieves adjusted efficiency ratings for the provided season, team, or conference. # noqa: E501
89
+ This method makes a synchronous HTTP request by default. To make an
90
+ asynchronous HTTP request, please pass async_req=True
91
+
92
+ >>> thread = api.get_adjusted_efficiency_with_http_info(season, team, conference, async_req=True)
93
+ >>> result = thread.get()
94
+
95
+ :param season: Optional season filter
96
+ :type season: int
97
+ :param team: Optional team filter
98
+ :type team: str
99
+ :param conference: Optional conference abbreviation filter
100
+ :type conference: str
101
+ :param async_req: Whether to execute the request asynchronously.
102
+ :type async_req: bool, optional
103
+ :param _preload_content: if False, the ApiResponse.data will
104
+ be set to none and raw_data will store the
105
+ HTTP response body without reading/decoding.
106
+ Default is True.
107
+ :type _preload_content: bool, optional
108
+ :param _return_http_data_only: response data instead of ApiResponse
109
+ object with status code, headers, etc
110
+ :type _return_http_data_only: bool, optional
111
+ :param _request_timeout: timeout setting for this request. If one
112
+ number provided, it will be total request
113
+ timeout. It can also be a pair (tuple) of
114
+ (connection, read) timeouts.
115
+ :param _request_auth: set to override the auth_settings for an a single
116
+ request; this effectively ignores the authentication
117
+ in the spec for a single request.
118
+ :type _request_auth: dict, optional
119
+ :type _content_type: string, optional: force content-type for the request
120
+ :return: Returns the result object.
121
+ If the method is called asynchronously,
122
+ returns the request thread.
123
+ :rtype: tuple(List[AdjustedEfficiencyInfo], status_code(int), headers(HTTPHeaderDict))
124
+ """
125
+
126
+ _params = locals()
127
+
128
+ _all_params = [
129
+ 'season',
130
+ 'team',
131
+ 'conference'
132
+ ]
133
+ _all_params.extend(
134
+ [
135
+ 'async_req',
136
+ '_return_http_data_only',
137
+ '_preload_content',
138
+ '_request_timeout',
139
+ '_request_auth',
140
+ '_content_type',
141
+ '_headers'
142
+ ]
143
+ )
144
+
145
+ # validate the arguments
146
+ for _key, _val in _params['kwargs'].items():
147
+ if _key not in _all_params:
148
+ raise ApiTypeError(
149
+ "Got an unexpected keyword argument '%s'"
150
+ " to method get_adjusted_efficiency" % _key
151
+ )
152
+ _params[_key] = _val
153
+ del _params['kwargs']
154
+
155
+ _collection_formats = {}
156
+
157
+ # process the path parameters
158
+ _path_params = {}
159
+
160
+ # process the query parameters
161
+ _query_params = []
162
+ if _params.get('season') is not None: # noqa: E501
163
+ _query_params.append(('season', _params['season']))
164
+
165
+ if _params.get('team') is not None: # noqa: E501
166
+ _query_params.append(('team', _params['team']))
167
+
168
+ if _params.get('conference') is not None: # noqa: E501
169
+ _query_params.append(('conference', _params['conference']))
170
+
171
+ # process the header parameters
172
+ _header_params = dict(_params.get('_headers', {}))
173
+ # process the form parameters
174
+ _form_params = []
175
+ _files = {}
176
+ # process the body parameter
177
+ _body_params = None
178
+ # set the HTTP header `Accept`
179
+ _header_params['Accept'] = self.api_client.select_header_accept(
180
+ ['application/json']) # noqa: E501
181
+
182
+ # authentication setting
183
+ _auth_settings = ['apiKey'] # noqa: E501
184
+
185
+ _response_types_map = {
186
+ '200': "List[AdjustedEfficiencyInfo]",
187
+ }
188
+
189
+ return self.api_client.call_api(
190
+ '/ratings/adjusted', 'GET',
191
+ _path_params,
192
+ _query_params,
193
+ _header_params,
194
+ body=_body_params,
195
+ post_params=_form_params,
196
+ files=_files,
197
+ response_types_map=_response_types_map,
198
+ auth_settings=_auth_settings,
199
+ async_req=_params.get('async_req'),
200
+ _return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
201
+ _preload_content=_params.get('_preload_content', True),
202
+ _request_timeout=_params.get('_request_timeout'),
203
+ collection_formats=_collection_formats,
204
+ _request_auth=_params.get('_request_auth'))
205
+
206
+ @validate_arguments
207
+ def get_srs(self, season : Annotated[Optional[StrictInt], Field(description="Optional season filter")] = None, team : Annotated[Optional[StrictStr], Field(description="Optional team filter")] = None, conference : Annotated[Optional[StrictStr], Field(description="Optional conference abbreviation filter")] = None, **kwargs) -> List[SrsInfo]: # noqa: E501
208
+ """get_srs # noqa: E501
209
+
210
+ Retrieves SRS ratings for the provided season, team, or conference. # noqa: E501
211
+ This method makes a synchronous HTTP request by default. To make an
212
+ asynchronous HTTP request, please pass async_req=True
213
+
214
+ >>> thread = api.get_srs(season, team, conference, async_req=True)
215
+ >>> result = thread.get()
216
+
217
+ :param season: Optional season filter
218
+ :type season: int
219
+ :param team: Optional team filter
220
+ :type team: str
221
+ :param conference: Optional conference abbreviation filter
222
+ :type conference: str
223
+ :param async_req: Whether to execute the request asynchronously.
224
+ :type async_req: bool, optional
225
+ :param _request_timeout: timeout setting for this request.
226
+ If one number provided, it will be total request
227
+ timeout. It can also be a pair (tuple) of
228
+ (connection, read) timeouts.
229
+ :return: Returns the result object.
230
+ If the method is called asynchronously,
231
+ returns the request thread.
232
+ :rtype: List[SrsInfo]
233
+ """
234
+ kwargs['_return_http_data_only'] = True
235
+ if '_preload_content' in kwargs:
236
+ message = "Error! Please call the get_srs_with_http_info method with `_preload_content` instead and obtain raw data from ApiResponse.raw_data" # noqa: E501
237
+ raise ValueError(message)
238
+ return self.get_srs_with_http_info(season, team, conference, **kwargs) # noqa: E501
239
+
240
+ @validate_arguments
241
+ def get_srs_with_http_info(self, season : Annotated[Optional[StrictInt], Field(description="Optional season filter")] = None, team : Annotated[Optional[StrictStr], Field(description="Optional team filter")] = None, conference : Annotated[Optional[StrictStr], Field(description="Optional conference abbreviation filter")] = None, **kwargs) -> ApiResponse: # noqa: E501
242
+ """get_srs # noqa: E501
243
+
244
+ Retrieves SRS ratings for the provided season, team, or conference. # noqa: E501
245
+ This method makes a synchronous HTTP request by default. To make an
246
+ asynchronous HTTP request, please pass async_req=True
247
+
248
+ >>> thread = api.get_srs_with_http_info(season, team, conference, async_req=True)
249
+ >>> result = thread.get()
250
+
251
+ :param season: Optional season filter
252
+ :type season: int
253
+ :param team: Optional team filter
254
+ :type team: str
255
+ :param conference: Optional conference abbreviation filter
256
+ :type conference: str
257
+ :param async_req: Whether to execute the request asynchronously.
258
+ :type async_req: bool, optional
259
+ :param _preload_content: if False, the ApiResponse.data will
260
+ be set to none and raw_data will store the
261
+ HTTP response body without reading/decoding.
262
+ Default is True.
263
+ :type _preload_content: bool, optional
264
+ :param _return_http_data_only: response data instead of ApiResponse
265
+ object with status code, headers, etc
266
+ :type _return_http_data_only: bool, optional
267
+ :param _request_timeout: timeout setting for this request. If one
268
+ number provided, it will be total request
269
+ timeout. It can also be a pair (tuple) of
270
+ (connection, read) timeouts.
271
+ :param _request_auth: set to override the auth_settings for an a single
272
+ request; this effectively ignores the authentication
273
+ in the spec for a single request.
274
+ :type _request_auth: dict, optional
275
+ :type _content_type: string, optional: force content-type for the request
276
+ :return: Returns the result object.
277
+ If the method is called asynchronously,
278
+ returns the request thread.
279
+ :rtype: tuple(List[SrsInfo], status_code(int), headers(HTTPHeaderDict))
280
+ """
281
+
282
+ _params = locals()
283
+
284
+ _all_params = [
285
+ 'season',
286
+ 'team',
287
+ 'conference'
288
+ ]
289
+ _all_params.extend(
290
+ [
291
+ 'async_req',
292
+ '_return_http_data_only',
293
+ '_preload_content',
294
+ '_request_timeout',
295
+ '_request_auth',
296
+ '_content_type',
297
+ '_headers'
298
+ ]
299
+ )
300
+
301
+ # validate the arguments
302
+ for _key, _val in _params['kwargs'].items():
303
+ if _key not in _all_params:
304
+ raise ApiTypeError(
305
+ "Got an unexpected keyword argument '%s'"
306
+ " to method get_srs" % _key
307
+ )
308
+ _params[_key] = _val
309
+ del _params['kwargs']
310
+
311
+ _collection_formats = {}
312
+
313
+ # process the path parameters
314
+ _path_params = {}
315
+
316
+ # process the query parameters
317
+ _query_params = []
318
+ if _params.get('season') is not None: # noqa: E501
319
+ _query_params.append(('season', _params['season']))
320
+
321
+ if _params.get('team') is not None: # noqa: E501
322
+ _query_params.append(('team', _params['team']))
323
+
324
+ if _params.get('conference') is not None: # noqa: E501
325
+ _query_params.append(('conference', _params['conference']))
326
+
327
+ # process the header parameters
328
+ _header_params = dict(_params.get('_headers', {}))
329
+ # process the form parameters
330
+ _form_params = []
331
+ _files = {}
332
+ # process the body parameter
333
+ _body_params = None
334
+ # set the HTTP header `Accept`
335
+ _header_params['Accept'] = self.api_client.select_header_accept(
336
+ ['application/json']) # noqa: E501
337
+
338
+ # authentication setting
339
+ _auth_settings = ['apiKey'] # noqa: E501
340
+
341
+ _response_types_map = {
342
+ '200': "List[SrsInfo]",
343
+ }
344
+
345
+ return self.api_client.call_api(
346
+ '/ratings/srs', 'GET',
347
+ _path_params,
348
+ _query_params,
349
+ _header_params,
350
+ body=_body_params,
351
+ post_params=_form_params,
352
+ files=_files,
353
+ response_types_map=_response_types_map,
354
+ auth_settings=_auth_settings,
355
+ async_req=_params.get('async_req'),
356
+ _return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
357
+ _preload_content=_params.get('_preload_content', True),
358
+ _request_timeout=_params.get('_request_timeout'),
359
+ collection_formats=_collection_formats,
360
+ _request_auth=_params.get('_request_auth'))
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.3.0
8
+ The version of the OpenAPI document: 1.5.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.3.0
8
+ The version of the OpenAPI document: 1.5.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.3.0
8
+ The version of the OpenAPI document: 1.5.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.3.0
8
+ The version of the OpenAPI document: 1.5.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.3.0/python'
81
+ self.user_agent = 'OpenAPI-Generator/1.5.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.3.0
8
+ The version of the OpenAPI document: 1.5.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.3.0\n"\
380
- "SDK Package Version: 1.3.0".\
379
+ "Version of the API: 1.5.0\n"\
380
+ "SDK Package Version: 1.5.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.3.0
8
+ The version of the OpenAPI document: 1.5.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.3.0
9
+ The version of the OpenAPI document: 1.5.0
10
10
  Contact: admin@collegefootballdata.com
11
11
  Generated by OpenAPI Generator (https://openapi-generator.tech)
12
12
 
@@ -15,6 +15,7 @@
15
15
 
16
16
 
17
17
  # import models into model package
18
+ from cbbd.models.adjusted_efficiency_info import AdjustedEfficiencyInfo
18
19
  from cbbd.models.conference_history import ConferenceHistory
19
20
  from cbbd.models.conference_history_teams_inner import ConferenceHistoryTeamsInner
20
21
  from cbbd.models.conference_info import ConferenceInfo
@@ -35,6 +36,7 @@ from cbbd.models.play_info_participants_inner import PlayInfoParticipantsInner
35
36
  from cbbd.models.play_type_info import PlayTypeInfo
36
37
  from cbbd.models.player_season_stats import PlayerSeasonStats
37
38
  from cbbd.models.season_type import SeasonType
39
+ from cbbd.models.srs_info import SrsInfo
38
40
  from cbbd.models.team_info import TeamInfo
39
41
  from cbbd.models.team_roster import TeamRoster
40
42
  from cbbd.models.team_roster_player import TeamRosterPlayer
@@ -0,0 +1,84 @@
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.5.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
+ from typing import Union
23
+ from pydantic import BaseModel, Field, StrictFloat, StrictInt, StrictStr
24
+
25
+ class AdjustedEfficiencyInfo(BaseModel):
26
+ """
27
+ AdjustedEfficiencyInfo
28
+ """
29
+ season: StrictInt = Field(...)
30
+ team_id: StrictInt = Field(default=..., alias="teamId")
31
+ team: StrictStr = Field(...)
32
+ conference: StrictStr = Field(...)
33
+ offensive_rating: Union[StrictFloat, StrictInt] = Field(default=..., alias="offensiveRating")
34
+ defensive_rating: Union[StrictFloat, StrictInt] = Field(default=..., alias="defensiveRating")
35
+ net_rating: Union[StrictFloat, StrictInt] = Field(default=..., alias="netRating")
36
+ __properties = ["season", "teamId", "team", "conference", "offensiveRating", "defensiveRating", "netRating"]
37
+
38
+ class Config:
39
+ """Pydantic configuration"""
40
+ allow_population_by_field_name = True
41
+ validate_assignment = True
42
+
43
+ def to_str(self) -> str:
44
+ """Returns the string representation of the model using alias"""
45
+ return pprint.pformat(self.dict(by_alias=True))
46
+
47
+ def to_json(self) -> str:
48
+ """Returns the JSON representation of the model using alias"""
49
+ return json.dumps(self.to_dict())
50
+
51
+ @classmethod
52
+ def from_json(cls, json_str: str) -> AdjustedEfficiencyInfo:
53
+ """Create an instance of AdjustedEfficiencyInfo from a JSON string"""
54
+ return cls.from_dict(json.loads(json_str))
55
+
56
+ def to_dict(self):
57
+ """Returns the dictionary representation of the model using alias"""
58
+ _dict = self.dict(by_alias=True,
59
+ exclude={
60
+ },
61
+ exclude_none=True)
62
+ return _dict
63
+
64
+ @classmethod
65
+ def from_dict(cls, obj: dict) -> AdjustedEfficiencyInfo:
66
+ """Create an instance of AdjustedEfficiencyInfo from a dict"""
67
+ if obj is None:
68
+ return None
69
+
70
+ if not isinstance(obj, dict):
71
+ return AdjustedEfficiencyInfo.parse_obj(obj)
72
+
73
+ _obj = AdjustedEfficiencyInfo.parse_obj({
74
+ "season": obj.get("season"),
75
+ "team_id": obj.get("teamId"),
76
+ "team": obj.get("team"),
77
+ "conference": obj.get("conference"),
78
+ "offensive_rating": obj.get("offensiveRating"),
79
+ "defensive_rating": obj.get("defensiveRating"),
80
+ "net_rating": obj.get("netRating")
81
+ })
82
+ return _obj
83
+
84
+
@@ -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.3.0
8
+ The version of the OpenAPI document: 1.5.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.3.0
8
+ The version of the OpenAPI document: 1.5.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.3.0
8
+ The version of the OpenAPI document: 1.5.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.3.0
8
+ The version of the OpenAPI document: 1.5.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.3.0
8
+ The version of the OpenAPI document: 1.5.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.3.0
8
+ The version of the OpenAPI document: 1.5.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.3.0
8
+ The version of the OpenAPI document: 1.5.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.3.0
8
+ The version of the OpenAPI document: 1.5.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.3.0
8
+ The version of the OpenAPI document: 1.5.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.3.0
8
+ The version of the OpenAPI document: 1.5.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.3.0
8
+ The version of the OpenAPI document: 1.5.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.3.0
8
+ The version of the OpenAPI document: 1.5.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.3.0
8
+ The version of the OpenAPI document: 1.5.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.3.0
8
+ The version of the OpenAPI document: 1.5.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.3.0
8
+ The version of the OpenAPI document: 1.5.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.3.0
8
+ The version of the OpenAPI document: 1.5.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.3.0
8
+ The version of the OpenAPI document: 1.5.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.3.0
8
+ The version of the OpenAPI document: 1.5.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.3.0
8
+ The version of the OpenAPI document: 1.5.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.3.0
8
+ The version of the OpenAPI document: 1.5.0
9
9
  Contact: admin@collegefootballdata.com
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -0,0 +1,80 @@
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.5.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
+ from typing import Union
23
+ from pydantic import BaseModel, Field, StrictFloat, StrictInt, StrictStr
24
+
25
+ class SrsInfo(BaseModel):
26
+ """
27
+ SrsInfo
28
+ """
29
+ season: StrictInt = Field(...)
30
+ team_id: StrictInt = Field(default=..., alias="teamId")
31
+ team: StrictStr = Field(...)
32
+ conference: StrictStr = Field(...)
33
+ rating: Union[StrictFloat, StrictInt] = Field(...)
34
+ __properties = ["season", "teamId", "team", "conference", "rating"]
35
+
36
+ class Config:
37
+ """Pydantic configuration"""
38
+ allow_population_by_field_name = True
39
+ validate_assignment = True
40
+
41
+ def to_str(self) -> str:
42
+ """Returns the string representation of the model using alias"""
43
+ return pprint.pformat(self.dict(by_alias=True))
44
+
45
+ def to_json(self) -> str:
46
+ """Returns the JSON representation of the model using alias"""
47
+ return json.dumps(self.to_dict())
48
+
49
+ @classmethod
50
+ def from_json(cls, json_str: str) -> SrsInfo:
51
+ """Create an instance of SrsInfo from a JSON string"""
52
+ return cls.from_dict(json.loads(json_str))
53
+
54
+ def to_dict(self):
55
+ """Returns the dictionary representation of the model using alias"""
56
+ _dict = self.dict(by_alias=True,
57
+ exclude={
58
+ },
59
+ exclude_none=True)
60
+ return _dict
61
+
62
+ @classmethod
63
+ def from_dict(cls, obj: dict) -> SrsInfo:
64
+ """Create an instance of SrsInfo from a dict"""
65
+ if obj is None:
66
+ return None
67
+
68
+ if not isinstance(obj, dict):
69
+ return SrsInfo.parse_obj(obj)
70
+
71
+ _obj = SrsInfo.parse_obj({
72
+ "season": obj.get("season"),
73
+ "team_id": obj.get("teamId"),
74
+ "team": obj.get("team"),
75
+ "conference": obj.get("conference"),
76
+ "rating": obj.get("rating")
77
+ })
78
+ return _obj
79
+
80
+
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.3.0
8
+ The version of the OpenAPI document: 1.5.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.3.0
8
+ The version of the OpenAPI document: 1.5.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.3.0
8
+ The version of the OpenAPI document: 1.5.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.3.0
8
+ The version of the OpenAPI document: 1.5.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.3.0
8
+ The version of the OpenAPI document: 1.5.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.3.0
8
+ The version of the OpenAPI document: 1.5.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.3.0
8
+ The version of the OpenAPI document: 1.5.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.3.0
8
+ The version of the OpenAPI document: 1.5.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.3.0
8
+ The version of the OpenAPI document: 1.5.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.3.0
8
+ The version of the OpenAPI document: 1.5.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.3.0
8
+ The version of the OpenAPI document: 1.5.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.3.0
8
+ The version of the OpenAPI document: 1.5.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.3.0
8
+ The version of the OpenAPI document: 1.5.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.3.0
8
+ The version of the OpenAPI document: 1.5.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.3.0
3
+ Version: 1.5.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,56 @@
1
+ cbbd/__init__.py,sha256=Xmx_GRDIsJaPnXr-NGRHzYirwIVfhWBEzPtWI0pbDU8,3545
2
+ cbbd/api_client.py,sha256=HEMXCIYpBN3M2BNC3O9bE5KVeiB4C5UQoCRgg7TOUnw,29894
3
+ cbbd/api_response.py,sha256=uCehWdXXDnAO2HAHGKe0SgpQ_mJiGDbcu-BHDF3n_IM,852
4
+ cbbd/configuration.py,sha256=RcBdjqtYNMs3ySemiCr5QQdxUWg80IGu1h_xZYb0Bwg,14796
5
+ cbbd/exceptions.py,sha256=rkzM-LJZbAg72bnCxDWFSdpuE9zrcDzXwg2iCRom96c,5545
6
+ cbbd/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
7
+ cbbd/rest.py,sha256=_By-EEHyD_6Aicx_k0kny49rbcUCehq012yAHiGiWnA,14162
8
+ cbbd/api/__init__.py,sha256=eZkj51ZLdv2e_6U9bEPVhek2eV3QDX6xyLoDQKMaGF4,386
9
+ cbbd/api/conferences_api.py,sha256=N-E8JatIAyPjo3Oy2u-Phx0V6XTiPwejMuZJ54KqY4w,13078
10
+ cbbd/api/games_api.py,sha256=ulgujuVJkRf_DIvY0CNDPRg5OGKzgfmFMkOqaXhiBsE,41194
11
+ cbbd/api/lines_api.py,sha256=WOWqgLrMmYzAIkgRxh68dgFJQqG0yDSGownnslE_evs,15756
12
+ cbbd/api/plays_api.py,sha256=O_U2ack4K6YctVV49ewiwhghCzHXev1hsLdnMVU3RyA,32183
13
+ cbbd/api/ratings_api.py,sha256=F1z6fdGb-yZKH83iBkO5-tCMOjhScsDYGrPogXAq2mw,15678
14
+ cbbd/api/stats_api.py,sha256=lffaD9Q0tVq6pwW2wrMoUt44ZZ7dQGCtkZZmgRpoWRg,20182
15
+ cbbd/api/teams_api.py,sha256=cAs8n8qr8Cr-8azxXtObDD07bw5VxU4ZNRRNJh0RFWg,14207
16
+ cbbd/api/venues_api.py,sha256=T10NusWsv1yfGxM653nA6mEP2-oIL9uIsq0ftqVXOXA,6567
17
+ cbbd/models/__init__.py,sha256=ImoA4ubWgfdRo6vbbUVSTJxHsC0fTwpm_7q1Xg3gUXQ,2753
18
+ cbbd/models/adjusted_efficiency_info.py,sha256=OkkOBaS4solnM7quJDQje6z709bAiKK4QDPy29ELpH0,2909
19
+ cbbd/models/conference_history.py,sha256=QxWtvm9Oxqyd-Krsp3Psus5i3Fx3TnRIWRUXAGQuBqs,3083
20
+ cbbd/models/conference_history_teams_inner.py,sha256=dHsoTj6ZIlgmpSJ3s9qxyhtXUExTDa3alsDI-Y0UHFY,3129
21
+ cbbd/models/conference_info.py,sha256=5oAVR-hwujZpODUNKzWTTkQfO_zdgcmACTia2zyVsy0,2436
22
+ cbbd/models/game_box_score_players.py,sha256=G4aetsBDPVVF_G8AOlYfHdJtvdjwHMCqciFrTkh_REY,6355
23
+ cbbd/models/game_box_score_players_players_inner.py,sha256=7XxU2JmBpLm1zT0bMe_VsdC8sN9kRsQt4pC7ONOuONg,12092
24
+ cbbd/models/game_box_score_team.py,sha256=4sL_XswBmrnBH78LGHvvmQTHKS1X4MxvuHkwKyndUj8,6386
25
+ cbbd/models/game_box_score_team_stats.py,sha256=zUgDyWvBzRLU26hprJpN5wa0czB9lZECe79xBktYcQw,8686
26
+ cbbd/models/game_box_score_team_stats_points.py,sha256=tuK2TEwX6JteSZbCtzjnST2-Std-Md0xbE9egOR2NII,4297
27
+ cbbd/models/game_info.py,sha256=xGtq9PLQNKZQUmpcKleCdCszvusT7sbamoSkps6xkcU,9614
28
+ cbbd/models/game_line_info.py,sha256=d3WbCCEfELBrbiCTKCFlltTg5E33YTOT8i2-2TrlyEg,4370
29
+ cbbd/models/game_lines.py,sha256=MEIy5ujJzvbVxF4N85nhrhc1cRZ0f-SNd5wvB-cgdQ4,5076
30
+ cbbd/models/game_media_info.py,sha256=iddQbV9bwGl0oYHekn708DpO_-kCf21d8tVTKH_0PjU,5671
31
+ cbbd/models/game_media_info_broadcasts_inner.py,sha256=FnOeW8BVhAk8wnEYwMuL1YqBgucALI5Nm9nlYd4DD6k,2324
32
+ cbbd/models/game_status.py,sha256=jzqLVPGW_zs1W7PHp1QpLzusGttJ7CS6wjK78wlBnu8,948
33
+ cbbd/models/line_provider_info.py,sha256=AqAtNP34jFiNs5IxNKot8QBtL5Rsg5-HieBjAVvK-L4,2093
34
+ cbbd/models/play_info.py,sha256=qVuLaR-RLVZxRrzAohPJk2xMXFgcJ_xEBNKrTH1VqcM,8576
35
+ cbbd/models/play_info_participants_inner.py,sha256=Fhazd75tcJpP_Y5gppdzFJOff6h1pu8mc_1Kztqjdjs,2165
36
+ cbbd/models/play_type_info.py,sha256=TbadXA4VXbcchy7-Kv6Ya3bjdMWktjtFOzzJIwDCzjI,2061
37
+ cbbd/models/player_season_stats.py,sha256=9wMzktvNQgoR9CPc1hdOtb9B1RCyCLrgTarakiTnQ5I,11712
38
+ cbbd/models/season_type.py,sha256=UIJ7Qu2VwVIlDNsbse3IU7WAvC8VUNnHhsgOC7ogjHc,894
39
+ cbbd/models/srs_info.py,sha256=0A0u4fkdMapDYPulsyOgOQbyv3X4lk4lMlcJp0zcDbo,2394
40
+ cbbd/models/team_info.py,sha256=rwRKf41y2Fin3BpikB_gY_JKqf_FDldHrVl8bx7_1HU,6665
41
+ cbbd/models/team_roster.py,sha256=jtRP6zglNNN04D3--uxo_TpWWOECSSc7IJNuS75G1NE,3294
42
+ cbbd/models/team_roster_player.py,sha256=SLdnpr4aCr_1qRYq79PSm4dlS6Dc5ndcvW8gaINDXRs,5353
43
+ cbbd/models/team_roster_player_hometown.py,sha256=F-slER1I2spmWBQ4nWuOdWoMwwNvhhnR788H2GcdiXc,2906
44
+ cbbd/models/team_season_stats.py,sha256=e4_5u9xS7KJ4sxD1aNSZvg5Ka4L40w8R2uUtMuwyLsA,4262
45
+ cbbd/models/team_season_unit_stats.py,sha256=wfxPQ8t6QEI4YwP53Zjm28R48MPpDtwhyH1nkz62rwM,8286
46
+ cbbd/models/team_season_unit_stats_field_goals.py,sha256=DISl1Hy25WTKdj4ity1IHC_6jngR4csiaFA7iMUNuqc,3026
47
+ cbbd/models/team_season_unit_stats_fouls.py,sha256=AQM2RqDG468se2rEKgPte6tU7y-v3IMA3FFBJJndeM0,3034
48
+ cbbd/models/team_season_unit_stats_four_factors.py,sha256=2teokvSi1uv9H5XwhIeRTowGQysMw-p196oIPxrezp8,3883
49
+ cbbd/models/team_season_unit_stats_points.py,sha256=gXo9i6bfuZo9jIwl9q0fs4Mbmr0pX0Foa2oaweVTPDM,3498
50
+ cbbd/models/team_season_unit_stats_rebounds.py,sha256=v1wGxInft-iMUNj7MOdW-HlzjeoqnIWUYgRVlIXCzE0,3066
51
+ cbbd/models/team_season_unit_stats_turnovers.py,sha256=g3Eh9rx87coRiohO4XU-QESD-Q5lyl6p0ljK7yh3QMQ,2763
52
+ cbbd/models/venue_info.py,sha256=aTn-OF9sDPXrXXPgTKRK6IILUSMngASsuw6A33lCeGY,3331
53
+ cbbd-1.5.0.dist-info/METADATA,sha256=pGRaIZUVeJ5_KooAdJm9waQ0By_td93m8Uuva_71-38,763
54
+ cbbd-1.5.0.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
55
+ cbbd-1.5.0.dist-info/top_level.txt,sha256=d8efSEMxRPpV_X-2jtQvf9S-EI4HoFQpCEOZCjDxT24,5
56
+ cbbd-1.5.0.dist-info/RECORD,,
@@ -1,53 +0,0 @@
1
- cbbd/__init__.py,sha256=gAw59tpDBNRiUjCIdWs_vEAwIBj1TvA2xOVIL5Xlwm4,3388
2
- cbbd/api_client.py,sha256=Vkh_0hdxoo8c0TSGk_lvAqkmiDK8m1iCyvkR5XE193s,29894
3
- cbbd/api_response.py,sha256=uCehWdXXDnAO2HAHGKe0SgpQ_mJiGDbcu-BHDF3n_IM,852
4
- cbbd/configuration.py,sha256=gkzRnwo_W9_1GcNlT-_VvcC8n1aWZez7hMXeT0qkJBo,14796
5
- cbbd/exceptions.py,sha256=DcLtW5xcLB3DiTo_6_FnwpfnELbnrL7QWl8XV8WlkFk,5545
6
- cbbd/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
7
- cbbd/rest.py,sha256=DDJLNqrmRCnd0yb7e5uktQbpO1QFreteeGW98jaojBI,14162
8
- cbbd/api/__init__.py,sha256=8SGJTI60wSVBcog5RT6KD2dMvtpwlU2_3NXC6h24FP8,342
9
- cbbd/api/conferences_api.py,sha256=og96RiueUNFJfox6q5-HKp8hHxErQRUFnDsu_WQM8FU,13078
10
- cbbd/api/games_api.py,sha256=9uIKwx60yIxjGJTRg2maTOTjHI57yePbS8Y7HIgsPnc,41194
11
- cbbd/api/lines_api.py,sha256=6Maaq1AG8rUSKrbtVq5o0q4PkCa7ydR3e0-z-cDLWNc,15756
12
- cbbd/api/plays_api.py,sha256=C05KomM7upMBsdxs2loLk9oelGTUxIBsFwACz6dB9_U,32183
13
- cbbd/api/stats_api.py,sha256=ftSX-JVsBiu44Vgy4rgS-foOqoYSLySjClZsgfwXKew,20182
14
- cbbd/api/teams_api.py,sha256=qALbmR9qtuo0hYWADAbxmu0CkAW5gOu-JsUnbL-p5LQ,14207
15
- cbbd/api/venues_api.py,sha256=QuLEg7eAruVRe8WIlrNP7BYBtBPQYQoxrVKt05rvnz4,6567
16
- cbbd/models/__init__.py,sha256=1LMsJlnvImy_HgtukT_rik1UtxVoL7mP80LPhP6eo2Q,2640
17
- cbbd/models/conference_history.py,sha256=T9jkRsvnD170F0mudsDPdvrL3tvFh0VS20mu2fZxo6E,3083
18
- cbbd/models/conference_history_teams_inner.py,sha256=dhVcq6vkuhz2hCQRdti4Vb6lZhM_MPITlv5XkRgdKro,3129
19
- cbbd/models/conference_info.py,sha256=sCOLmsb38VqahmK4ZwAOKiWg4tBpLp_XCgAjfyJzkgw,2436
20
- cbbd/models/game_box_score_players.py,sha256=TIzj5gc3KSZoC-rh1UK2KkUSSn_nhFe2WZhb8wiAAo4,6355
21
- cbbd/models/game_box_score_players_players_inner.py,sha256=UEKxuv1Y_ahMbR_7ssjvDaCxC1IyDHF-Q88964oVy7Q,12092
22
- cbbd/models/game_box_score_team.py,sha256=OvS_oJH1Jn_S3YkyiqZ29j5DKCV4L6qVbt7M3trcdiw,6386
23
- cbbd/models/game_box_score_team_stats.py,sha256=w2Jt9NYmJNaZMlrUkOimup9mHA_aOiEHo9glTBQ3dbw,8686
24
- cbbd/models/game_box_score_team_stats_points.py,sha256=jJMmMUoiEC0uALRNz_sVEvXZR4D3Cj3N0uv43ip2ip0,4297
25
- cbbd/models/game_info.py,sha256=vUVx_J4J88qvrZjlP5XCVoL2AMt9qPVOQtehyY7adus,9614
26
- cbbd/models/game_line_info.py,sha256=VzOhqgQ7_hrKj1_MonVQjY9TeMeoeT3L_fLHoLpYOeQ,4370
27
- cbbd/models/game_lines.py,sha256=ofs1hslhuATsy2l-hBD4_Xj8Ri4QcSeXaMaSZ7YfURg,5076
28
- cbbd/models/game_media_info.py,sha256=VxoBnDMEK_d1h1a3XGy7Rp04S7SrFSB0c0nAoPTRSpI,5671
29
- cbbd/models/game_media_info_broadcasts_inner.py,sha256=lmS2K9VdgiZPPktKQV2u5xrd5h6HESM7_frDXcKHPjE,2324
30
- cbbd/models/game_status.py,sha256=Qi1Hr-TblpPjKGLmf_lXGrbdoTB4G_LMMI2ik-QzF2U,948
31
- cbbd/models/line_provider_info.py,sha256=ivCu4EdULpztd-6c4z8SzrWd6LsS1tbIgUlgs6FYiGQ,2093
32
- cbbd/models/play_info.py,sha256=VYul_KKiaKz3xr7yXg8c1RcjG1NcGAO4UOR4LJPaNe4,8576
33
- cbbd/models/play_info_participants_inner.py,sha256=ydLtEVE2HvRpOBprQUVXIMeHndebwJQdQyQxesUvJbQ,2165
34
- cbbd/models/play_type_info.py,sha256=2dZJe6GNe9Smwcc8Uj7xPLAOHmA8uUoyB659szeMHTo,2061
35
- cbbd/models/player_season_stats.py,sha256=9oxtO1UbT5HLkAHIyISidBF_OT-MVPLYQK3SDld-Bz8,11712
36
- cbbd/models/season_type.py,sha256=Z7rSDsUWuxUtpQJxjZ7_N94PXumIkkBX3_l3MHZ1rjM,894
37
- cbbd/models/team_info.py,sha256=FDnD7Kb6g3RpHYjUs9tH-SVzY1C8gwulwnuQk90K5UM,6665
38
- cbbd/models/team_roster.py,sha256=W6AvzLlmt0EDICdx18caHSciSYWOBphbp5lbs-skwI8,3294
39
- cbbd/models/team_roster_player.py,sha256=F8i-IZ6RU3f1jIEbGIjm0w2gJPlThQC3YaO3Lnruzqo,5353
40
- cbbd/models/team_roster_player_hometown.py,sha256=Tfo2xzf5UGN2S5UMXvJHqZwaU5b-Cg0TApKNUN8yIOk,2906
41
- cbbd/models/team_season_stats.py,sha256=qI_azBM6z62YgT-vyOpMYatNiHmdxWeuMWLzlCwtq2Q,4262
42
- cbbd/models/team_season_unit_stats.py,sha256=4YrekuWjkMIcyGDDjWdg80XUMl48fptfHuDc_Ad3p4k,8286
43
- cbbd/models/team_season_unit_stats_field_goals.py,sha256=OnbuRorVl2Tv7S2iJTj6szXPTFsXnRtLQJbW9Ru761M,3026
44
- cbbd/models/team_season_unit_stats_fouls.py,sha256=6hoij8elGTcAneZ5FXe7M8iYhtkc5iszVsO_IGtUOJw,3034
45
- cbbd/models/team_season_unit_stats_four_factors.py,sha256=DaVWq1U2gNNFdGCMAQsUHHGGwfuvCQIxfvhTEW4waZQ,3883
46
- cbbd/models/team_season_unit_stats_points.py,sha256=31pdVnWIGod-8ZedanBqZOPyUV0rER7lLPIgxJXb4YA,3498
47
- cbbd/models/team_season_unit_stats_rebounds.py,sha256=pcJAqZ_HQ_EkUfS7Os_Mkq--7mDztXas61JJfmruEgA,3066
48
- cbbd/models/team_season_unit_stats_turnovers.py,sha256=M2wKG0gBrc-YepRybfmLhvnzGj0tNzigIc_sYPIN1xs,2763
49
- cbbd/models/venue_info.py,sha256=U70yqZVrYy-bY1ibQ5UItITCITHhaa4jlksE9JLi1Tw,3331
50
- cbbd-1.3.0.dist-info/METADATA,sha256=Kg6za3f1s7ovLmj3tReiQmcK4548w8N3Ennm4u4vw2Y,763
51
- cbbd-1.3.0.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
52
- cbbd-1.3.0.dist-info/top_level.txt,sha256=d8efSEMxRPpV_X-2jtQvf9S-EI4HoFQpCEOZCjDxT24,5
53
- cbbd-1.3.0.dist-info/RECORD,,
File without changes