cbbd 1.17.0__py3-none-any.whl → 1.18.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 (79) hide show
  1. cbbd/__init__.py +8 -2
  2. cbbd/api/__init__.py +1 -0
  3. cbbd/api/conferences_api.py +1 -1
  4. cbbd/api/draft_api.py +1 -1
  5. cbbd/api/games_api.py +1 -1
  6. cbbd/api/lines_api.py +1 -1
  7. cbbd/api/lineups_api.py +359 -0
  8. cbbd/api/plays_api.py +1 -1
  9. cbbd/api/rankings_api.py +1 -1
  10. cbbd/api/ratings_api.py +1 -1
  11. cbbd/api/recruiting_api.py +1 -1
  12. cbbd/api/stats_api.py +1 -1
  13. cbbd/api/teams_api.py +1 -1
  14. cbbd/api/venues_api.py +1 -1
  15. cbbd/api_client.py +2 -2
  16. cbbd/configuration.py +3 -3
  17. cbbd/exceptions.py +1 -1
  18. cbbd/models/__init__.py +6 -1
  19. cbbd/models/adjusted_efficiency_info.py +1 -1
  20. cbbd/models/adjusted_efficiency_info_rankings.py +1 -1
  21. cbbd/models/conference_history.py +1 -1
  22. cbbd/models/conference_history_teams_inner.py +1 -1
  23. cbbd/models/conference_info.py +1 -1
  24. cbbd/models/draft_pick.py +1 -1
  25. cbbd/models/draft_position.py +1 -1
  26. cbbd/models/draft_team.py +1 -1
  27. cbbd/models/game_box_score_players.py +1 -1
  28. cbbd/models/game_box_score_players_players_inner.py +1 -1
  29. cbbd/models/game_box_score_team.py +1 -1
  30. cbbd/models/game_box_score_team_stats.py +1 -1
  31. cbbd/models/game_box_score_team_stats_points.py +1 -1
  32. cbbd/models/game_info.py +1 -1
  33. cbbd/models/game_line_info.py +1 -1
  34. cbbd/models/game_lines.py +1 -1
  35. cbbd/models/game_media_info.py +1 -1
  36. cbbd/models/game_media_info_broadcasts_inner.py +1 -1
  37. cbbd/models/game_status.py +1 -1
  38. cbbd/models/line_provider_info.py +1 -1
  39. cbbd/models/lineup_stats.py +109 -0
  40. cbbd/models/lineup_unit_stats.py +116 -0
  41. cbbd/models/lineup_unit_stats_four_factors.py +78 -0
  42. cbbd/models/lineup_unit_stats_two_pointers.py +97 -0
  43. cbbd/models/play_info.py +1 -1
  44. cbbd/models/play_info_on_floor_inner.py +1 -1
  45. cbbd/models/play_info_participants_inner.py +1 -1
  46. cbbd/models/play_type_info.py +1 -1
  47. cbbd/models/player_season_stats.py +1 -1
  48. cbbd/models/player_season_stats_win_shares.py +1 -1
  49. cbbd/models/player_subsititution.py +1 -1
  50. cbbd/models/player_subsititution_sub_in.py +1 -1
  51. cbbd/models/poll_team_info.py +1 -1
  52. cbbd/models/recruit.py +1 -1
  53. cbbd/models/recruit_committed_to.py +1 -1
  54. cbbd/models/recruit_hometown.py +1 -1
  55. cbbd/models/season_type.py +1 -1
  56. cbbd/models/shooting_stats.py +76 -0
  57. cbbd/models/shot_info.py +1 -1
  58. cbbd/models/shot_info_location.py +1 -1
  59. cbbd/models/shot_info_shooter.py +1 -1
  60. cbbd/models/srs_info.py +1 -1
  61. cbbd/models/team_info.py +1 -1
  62. cbbd/models/team_roster.py +1 -1
  63. cbbd/models/team_roster_player.py +1 -1
  64. cbbd/models/team_roster_player_hometown.py +1 -1
  65. cbbd/models/team_season_stats.py +1 -1
  66. cbbd/models/team_season_unit_stats.py +1 -1
  67. cbbd/models/team_season_unit_stats_field_goals.py +1 -1
  68. cbbd/models/team_season_unit_stats_fouls.py +1 -1
  69. cbbd/models/team_season_unit_stats_four_factors.py +1 -1
  70. cbbd/models/team_season_unit_stats_points.py +1 -1
  71. cbbd/models/team_season_unit_stats_rebounds.py +1 -1
  72. cbbd/models/team_season_unit_stats_turnovers.py +1 -1
  73. cbbd/models/venue_info.py +1 -1
  74. cbbd/rest.py +1 -1
  75. {cbbd-1.17.0.dist-info → cbbd-1.18.0.dist-info}/METADATA +1 -1
  76. cbbd-1.18.0.dist-info/RECORD +80 -0
  77. {cbbd-1.17.0.dist-info → cbbd-1.18.0.dist-info}/WHEEL +1 -1
  78. cbbd-1.17.0.dist-info/RECORD +0 -74
  79. {cbbd-1.17.0.dist-info → cbbd-1.18.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.17.0
10
+ The version of the OpenAPI document: 1.18.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.17.0"
18
+ __version__ = "1.18.0"
19
19
 
20
20
  # import apis into sdk package
21
21
  from cbbd.api.conferences_api import ConferencesApi
22
22
  from cbbd.api.draft_api import DraftApi
23
23
  from cbbd.api.games_api import GamesApi
24
24
  from cbbd.api.lines_api import LinesApi
25
+ from cbbd.api.lineups_api import LineupsApi
25
26
  from cbbd.api.plays_api import PlaysApi
26
27
  from cbbd.api.rankings_api import RankingsApi
27
28
  from cbbd.api.ratings_api import RatingsApi
@@ -62,6 +63,10 @@ from cbbd.models.game_media_info import GameMediaInfo
62
63
  from cbbd.models.game_media_info_broadcasts_inner import GameMediaInfoBroadcastsInner
63
64
  from cbbd.models.game_status import GameStatus
64
65
  from cbbd.models.line_provider_info import LineProviderInfo
66
+ from cbbd.models.lineup_stats import LineupStats
67
+ from cbbd.models.lineup_unit_stats import LineupUnitStats
68
+ from cbbd.models.lineup_unit_stats_four_factors import LineupUnitStatsFourFactors
69
+ from cbbd.models.lineup_unit_stats_two_pointers import LineupUnitStatsTwoPointers
65
70
  from cbbd.models.play_info import PlayInfo
66
71
  from cbbd.models.play_info_on_floor_inner import PlayInfoOnFloorInner
67
72
  from cbbd.models.play_info_participants_inner import PlayInfoParticipantsInner
@@ -75,6 +80,7 @@ from cbbd.models.recruit import Recruit
75
80
  from cbbd.models.recruit_committed_to import RecruitCommittedTo
76
81
  from cbbd.models.recruit_hometown import RecruitHometown
77
82
  from cbbd.models.season_type import SeasonType
83
+ from cbbd.models.shooting_stats import ShootingStats
78
84
  from cbbd.models.shot_info import ShotInfo
79
85
  from cbbd.models.shot_info_location import ShotInfoLocation
80
86
  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.draft_api import DraftApi
6
6
  from cbbd.api.games_api import GamesApi
7
7
  from cbbd.api.lines_api import LinesApi
8
+ from cbbd.api.lineups_api import LineupsApi
8
9
  from cbbd.api.plays_api import PlaysApi
9
10
  from cbbd.api.rankings_api import RankingsApi
10
11
  from cbbd.api.ratings_api import RatingsApi
@@ -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.17.0
8
+ The version of the OpenAPI document: 1.18.0
9
9
  Contact: admin@collegefootballdata.com
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
cbbd/api/draft_api.py CHANGED
@@ -5,7 +5,7 @@
5
5
 
6
6
  This API is in limited Beta for Patreon subscribers. It may have bugs and is subject to changes. API keys can be acquired from the CollegeFootballData.com website.
7
7
 
8
- The version of the OpenAPI document: 1.17.0
8
+ The version of the OpenAPI document: 1.18.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.17.0
8
+ The version of the OpenAPI document: 1.18.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.17.0
8
+ The version of the OpenAPI document: 1.18.0
9
9
  Contact: admin@collegefootballdata.com
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -0,0 +1,359 @@
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.18.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 datetime import datetime
24
+
25
+ from pydantic import Field, StrictInt, StrictStr
26
+
27
+ from typing import List, Optional
28
+
29
+ from cbbd.models.lineup_stats import LineupStats
30
+
31
+ from cbbd.api_client import ApiClient
32
+ from cbbd.api_response import ApiResponse
33
+ from cbbd.exceptions import ( # noqa: F401
34
+ ApiTypeError,
35
+ ApiValueError
36
+ )
37
+
38
+
39
+ class LineupsApi:
40
+ """NOTE: This class is auto generated by OpenAPI Generator
41
+ Ref: https://openapi-generator.tech
42
+
43
+ Do not edit the class manually.
44
+ """
45
+
46
+ def __init__(self, api_client=None) -> None:
47
+ if api_client is None:
48
+ api_client = ApiClient.get_default()
49
+ self.api_client = api_client
50
+
51
+ @validate_arguments
52
+ def get_lineup_stats_by_game(self, game_id : Annotated[StrictInt, Field(..., description="Required game id filter")], **kwargs) -> List[LineupStats]: # noqa: E501
53
+ """get_lineup_stats_by_game # noqa: E501
54
+
55
+ Queries lineup statistics for a specific game # noqa: E501
56
+ This method makes a synchronous HTTP request by default. To make an
57
+ asynchronous HTTP request, please pass async_req=True
58
+
59
+ >>> thread = api.get_lineup_stats_by_game(game_id, async_req=True)
60
+ >>> result = thread.get()
61
+
62
+ :param game_id: Required game id filter (required)
63
+ :type game_id: int
64
+ :param async_req: Whether to execute the request asynchronously.
65
+ :type async_req: bool, optional
66
+ :param _request_timeout: timeout setting for this request.
67
+ If one number provided, it will be total request
68
+ timeout. It can also be a pair (tuple) of
69
+ (connection, read) timeouts.
70
+ :return: Returns the result object.
71
+ If the method is called asynchronously,
72
+ returns the request thread.
73
+ :rtype: List[LineupStats]
74
+ """
75
+ kwargs['_return_http_data_only'] = True
76
+ if '_preload_content' in kwargs:
77
+ message = "Error! Please call the get_lineup_stats_by_game_with_http_info method with `_preload_content` instead and obtain raw data from ApiResponse.raw_data" # noqa: E501
78
+ raise ValueError(message)
79
+ return self.get_lineup_stats_by_game_with_http_info(game_id, **kwargs) # noqa: E501
80
+
81
+ @validate_arguments
82
+ def get_lineup_stats_by_game_with_http_info(self, game_id : Annotated[StrictInt, Field(..., description="Required game id filter")], **kwargs) -> ApiResponse: # noqa: E501
83
+ """get_lineup_stats_by_game # noqa: E501
84
+
85
+ Queries lineup statistics for a specific game # noqa: E501
86
+ This method makes a synchronous HTTP request by default. To make an
87
+ asynchronous HTTP request, please pass async_req=True
88
+
89
+ >>> thread = api.get_lineup_stats_by_game_with_http_info(game_id, async_req=True)
90
+ >>> result = thread.get()
91
+
92
+ :param game_id: Required game id filter (required)
93
+ :type game_id: int
94
+ :param async_req: Whether to execute the request asynchronously.
95
+ :type async_req: bool, optional
96
+ :param _preload_content: if False, the ApiResponse.data will
97
+ be set to none and raw_data will store the
98
+ HTTP response body without reading/decoding.
99
+ Default is True.
100
+ :type _preload_content: bool, optional
101
+ :param _return_http_data_only: response data instead of ApiResponse
102
+ object with status code, headers, etc
103
+ :type _return_http_data_only: bool, optional
104
+ :param _request_timeout: timeout setting for this request. If one
105
+ number provided, it will be total request
106
+ timeout. It can also be a pair (tuple) of
107
+ (connection, read) timeouts.
108
+ :param _request_auth: set to override the auth_settings for an a single
109
+ request; this effectively ignores the authentication
110
+ in the spec for a single request.
111
+ :type _request_auth: dict, optional
112
+ :type _content_type: string, optional: force content-type for the request
113
+ :return: Returns the result object.
114
+ If the method is called asynchronously,
115
+ returns the request thread.
116
+ :rtype: tuple(List[LineupStats], status_code(int), headers(HTTPHeaderDict))
117
+ """
118
+
119
+ _params = locals()
120
+
121
+ _all_params = [
122
+ 'game_id'
123
+ ]
124
+ _all_params.extend(
125
+ [
126
+ 'async_req',
127
+ '_return_http_data_only',
128
+ '_preload_content',
129
+ '_request_timeout',
130
+ '_request_auth',
131
+ '_content_type',
132
+ '_headers'
133
+ ]
134
+ )
135
+
136
+ # validate the arguments
137
+ for _key, _val in _params['kwargs'].items():
138
+ if _key not in _all_params:
139
+ raise ApiTypeError(
140
+ "Got an unexpected keyword argument '%s'"
141
+ " to method get_lineup_stats_by_game" % _key
142
+ )
143
+ _params[_key] = _val
144
+ del _params['kwargs']
145
+
146
+ _collection_formats = {}
147
+
148
+ # process the path parameters
149
+ _path_params = {}
150
+ if _params['game_id'] is not None:
151
+ _path_params['gameId'] = _params['game_id']
152
+
153
+
154
+ # process the query parameters
155
+ _query_params = []
156
+ # process the header parameters
157
+ _header_params = dict(_params.get('_headers', {}))
158
+ # process the form parameters
159
+ _form_params = []
160
+ _files = {}
161
+ # process the body parameter
162
+ _body_params = None
163
+ # set the HTTP header `Accept`
164
+ _header_params['Accept'] = self.api_client.select_header_accept(
165
+ ['application/json']) # noqa: E501
166
+
167
+ # authentication setting
168
+ _auth_settings = ['apiKey'] # noqa: E501
169
+
170
+ _response_types_map = {
171
+ '200': "List[LineupStats]",
172
+ }
173
+
174
+ return self.api_client.call_api(
175
+ '/lineups/game/{gameId}', 'GET',
176
+ _path_params,
177
+ _query_params,
178
+ _header_params,
179
+ body=_body_params,
180
+ post_params=_form_params,
181
+ files=_files,
182
+ response_types_map=_response_types_map,
183
+ auth_settings=_auth_settings,
184
+ async_req=_params.get('async_req'),
185
+ _return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
186
+ _preload_content=_params.get('_preload_content', True),
187
+ _request_timeout=_params.get('_request_timeout'),
188
+ collection_formats=_collection_formats,
189
+ _request_auth=_params.get('_request_auth'))
190
+
191
+ @validate_arguments
192
+ def get_substitutions_by_game(self, season : Annotated[StrictInt, Field(..., description="Required season filter")], team : Annotated[StrictStr, Field(..., description="Required team filter")], start_date_range : Annotated[Optional[datetime], Field(description="Optional start date range filter")] = None, end_date_range : Annotated[Optional[datetime], Field(description="Optional end date range filter")] = None, **kwargs) -> List[LineupStats]: # noqa: E501
193
+ """get_substitutions_by_game # noqa: E501
194
+
195
+ Queries lineup statistics for a given team and season # noqa: E501
196
+ This method makes a synchronous HTTP request by default. To make an
197
+ asynchronous HTTP request, please pass async_req=True
198
+
199
+ >>> thread = api.get_substitutions_by_game(season, team, start_date_range, end_date_range, async_req=True)
200
+ >>> result = thread.get()
201
+
202
+ :param season: Required season filter (required)
203
+ :type season: int
204
+ :param team: Required team filter (required)
205
+ :type team: str
206
+ :param start_date_range: Optional start date range filter
207
+ :type start_date_range: datetime
208
+ :param end_date_range: Optional end date range filter
209
+ :type end_date_range: datetime
210
+ :param async_req: Whether to execute the request asynchronously.
211
+ :type async_req: bool, optional
212
+ :param _request_timeout: timeout setting for this request.
213
+ If one number provided, it will be total request
214
+ timeout. It can also be a pair (tuple) of
215
+ (connection, read) timeouts.
216
+ :return: Returns the result object.
217
+ If the method is called asynchronously,
218
+ returns the request thread.
219
+ :rtype: List[LineupStats]
220
+ """
221
+ kwargs['_return_http_data_only'] = True
222
+ if '_preload_content' in kwargs:
223
+ message = "Error! Please call the get_substitutions_by_game_with_http_info method with `_preload_content` instead and obtain raw data from ApiResponse.raw_data" # noqa: E501
224
+ raise ValueError(message)
225
+ return self.get_substitutions_by_game_with_http_info(season, team, start_date_range, end_date_range, **kwargs) # noqa: E501
226
+
227
+ @validate_arguments
228
+ def get_substitutions_by_game_with_http_info(self, season : Annotated[StrictInt, Field(..., description="Required season filter")], team : Annotated[StrictStr, Field(..., description="Required team filter")], start_date_range : Annotated[Optional[datetime], Field(description="Optional start date range filter")] = None, end_date_range : Annotated[Optional[datetime], Field(description="Optional end date range filter")] = None, **kwargs) -> ApiResponse: # noqa: E501
229
+ """get_substitutions_by_game # noqa: E501
230
+
231
+ Queries lineup statistics for a given team and season # noqa: E501
232
+ This method makes a synchronous HTTP request by default. To make an
233
+ asynchronous HTTP request, please pass async_req=True
234
+
235
+ >>> thread = api.get_substitutions_by_game_with_http_info(season, team, start_date_range, end_date_range, async_req=True)
236
+ >>> result = thread.get()
237
+
238
+ :param season: Required season filter (required)
239
+ :type season: int
240
+ :param team: Required team filter (required)
241
+ :type team: str
242
+ :param start_date_range: Optional start date range filter
243
+ :type start_date_range: datetime
244
+ :param end_date_range: Optional end date range filter
245
+ :type end_date_range: datetime
246
+ :param async_req: Whether to execute the request asynchronously.
247
+ :type async_req: bool, optional
248
+ :param _preload_content: if False, the ApiResponse.data will
249
+ be set to none and raw_data will store the
250
+ HTTP response body without reading/decoding.
251
+ Default is True.
252
+ :type _preload_content: bool, optional
253
+ :param _return_http_data_only: response data instead of ApiResponse
254
+ object with status code, headers, etc
255
+ :type _return_http_data_only: bool, optional
256
+ :param _request_timeout: timeout setting for this request. If one
257
+ number provided, it will be total request
258
+ timeout. It can also be a pair (tuple) of
259
+ (connection, read) timeouts.
260
+ :param _request_auth: set to override the auth_settings for an a single
261
+ request; this effectively ignores the authentication
262
+ in the spec for a single request.
263
+ :type _request_auth: dict, optional
264
+ :type _content_type: string, optional: force content-type for the request
265
+ :return: Returns the result object.
266
+ If the method is called asynchronously,
267
+ returns the request thread.
268
+ :rtype: tuple(List[LineupStats], status_code(int), headers(HTTPHeaderDict))
269
+ """
270
+
271
+ _params = locals()
272
+
273
+ _all_params = [
274
+ 'season',
275
+ 'team',
276
+ 'start_date_range',
277
+ 'end_date_range'
278
+ ]
279
+ _all_params.extend(
280
+ [
281
+ 'async_req',
282
+ '_return_http_data_only',
283
+ '_preload_content',
284
+ '_request_timeout',
285
+ '_request_auth',
286
+ '_content_type',
287
+ '_headers'
288
+ ]
289
+ )
290
+
291
+ # validate the arguments
292
+ for _key, _val in _params['kwargs'].items():
293
+ if _key not in _all_params:
294
+ raise ApiTypeError(
295
+ "Got an unexpected keyword argument '%s'"
296
+ " to method get_substitutions_by_game" % _key
297
+ )
298
+ _params[_key] = _val
299
+ del _params['kwargs']
300
+
301
+ _collection_formats = {}
302
+
303
+ # process the path parameters
304
+ _path_params = {}
305
+
306
+ # process the query parameters
307
+ _query_params = []
308
+ if _params.get('season') is not None: # noqa: E501
309
+ _query_params.append(('season', _params['season']))
310
+
311
+ if _params.get('team') is not None: # noqa: E501
312
+ _query_params.append(('team', _params['team']))
313
+
314
+ if _params.get('start_date_range') is not None: # noqa: E501
315
+ if isinstance(_params['start_date_range'], datetime):
316
+ _query_params.append(('startDateRange', _params['start_date_range'].strftime(self.api_client.configuration.datetime_format)))
317
+ else:
318
+ _query_params.append(('startDateRange', _params['start_date_range']))
319
+
320
+ if _params.get('end_date_range') is not None: # noqa: E501
321
+ if isinstance(_params['end_date_range'], datetime):
322
+ _query_params.append(('endDateRange', _params['end_date_range'].strftime(self.api_client.configuration.datetime_format)))
323
+ else:
324
+ _query_params.append(('endDateRange', _params['end_date_range']))
325
+
326
+ # process the header parameters
327
+ _header_params = dict(_params.get('_headers', {}))
328
+ # process the form parameters
329
+ _form_params = []
330
+ _files = {}
331
+ # process the body parameter
332
+ _body_params = None
333
+ # set the HTTP header `Accept`
334
+ _header_params['Accept'] = self.api_client.select_header_accept(
335
+ ['application/json']) # noqa: E501
336
+
337
+ # authentication setting
338
+ _auth_settings = ['apiKey'] # noqa: E501
339
+
340
+ _response_types_map = {
341
+ '200': "List[LineupStats]",
342
+ }
343
+
344
+ return self.api_client.call_api(
345
+ '/lineups/team', 'GET',
346
+ _path_params,
347
+ _query_params,
348
+ _header_params,
349
+ body=_body_params,
350
+ post_params=_form_params,
351
+ files=_files,
352
+ response_types_map=_response_types_map,
353
+ auth_settings=_auth_settings,
354
+ async_req=_params.get('async_req'),
355
+ _return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
356
+ _preload_content=_params.get('_preload_content', True),
357
+ _request_timeout=_params.get('_request_timeout'),
358
+ collection_formats=_collection_formats,
359
+ _request_auth=_params.get('_request_auth'))
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.17.0
8
+ The version of the OpenAPI document: 1.18.0
9
9
  Contact: admin@collegefootballdata.com
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
cbbd/api/rankings_api.py CHANGED
@@ -5,7 +5,7 @@
5
5
 
6
6
  This API is in limited Beta for Patreon subscribers. It may have bugs and is subject to changes. API keys can be acquired from the CollegeFootballData.com website.
7
7
 
8
- The version of the OpenAPI document: 1.17.0
8
+ The version of the OpenAPI document: 1.18.0
9
9
  Contact: admin@collegefootballdata.com
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
cbbd/api/ratings_api.py CHANGED
@@ -5,7 +5,7 @@
5
5
 
6
6
  This API is in limited Beta for Patreon subscribers. It may have bugs and is subject to changes. API keys can be acquired from the CollegeFootballData.com website.
7
7
 
8
- The version of the OpenAPI document: 1.17.0
8
+ The version of the OpenAPI document: 1.18.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.17.0
8
+ The version of the OpenAPI document: 1.18.0
9
9
  Contact: admin@collegefootballdata.com
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
cbbd/api/stats_api.py CHANGED
@@ -5,7 +5,7 @@
5
5
 
6
6
  This API is in limited Beta for Patreon subscribers. It may have bugs and is subject to changes. API keys can be acquired from the CollegeFootballData.com website.
7
7
 
8
- The version of the OpenAPI document: 1.17.0
8
+ The version of the OpenAPI document: 1.18.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.17.0
8
+ The version of the OpenAPI document: 1.18.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.17.0
8
+ The version of the OpenAPI document: 1.18.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.17.0
8
+ The version of the OpenAPI document: 1.18.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.17.0/python'
81
+ self.user_agent = 'OpenAPI-Generator/1.18.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.17.0
8
+ The version of the OpenAPI document: 1.18.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.17.0\n"\
380
- "SDK Package Version: 1.17.0".\
379
+ "Version of the API: 1.18.0\n"\
380
+ "SDK Package Version: 1.18.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.17.0
8
+ The version of the OpenAPI document: 1.18.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.17.0
9
+ The version of the OpenAPI document: 1.18.0
10
10
  Contact: admin@collegefootballdata.com
11
11
  Generated by OpenAPI Generator (https://openapi-generator.tech)
12
12
 
@@ -35,6 +35,10 @@ from cbbd.models.game_media_info import GameMediaInfo
35
35
  from cbbd.models.game_media_info_broadcasts_inner import GameMediaInfoBroadcastsInner
36
36
  from cbbd.models.game_status import GameStatus
37
37
  from cbbd.models.line_provider_info import LineProviderInfo
38
+ from cbbd.models.lineup_stats import LineupStats
39
+ from cbbd.models.lineup_unit_stats import LineupUnitStats
40
+ from cbbd.models.lineup_unit_stats_four_factors import LineupUnitStatsFourFactors
41
+ from cbbd.models.lineup_unit_stats_two_pointers import LineupUnitStatsTwoPointers
38
42
  from cbbd.models.play_info import PlayInfo
39
43
  from cbbd.models.play_info_on_floor_inner import PlayInfoOnFloorInner
40
44
  from cbbd.models.play_info_participants_inner import PlayInfoParticipantsInner
@@ -48,6 +52,7 @@ from cbbd.models.recruit import Recruit
48
52
  from cbbd.models.recruit_committed_to import RecruitCommittedTo
49
53
  from cbbd.models.recruit_hometown import RecruitHometown
50
54
  from cbbd.models.season_type import SeasonType
55
+ from cbbd.models.shooting_stats import ShootingStats
51
56
  from cbbd.models.shot_info import ShotInfo
52
57
  from cbbd.models.shot_info_location import ShotInfoLocation
53
58
  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.17.0
8
+ The version of the OpenAPI document: 1.18.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.17.0
8
+ The version of the OpenAPI document: 1.18.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.17.0
8
+ The version of the OpenAPI document: 1.18.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.17.0
8
+ The version of the OpenAPI document: 1.18.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.17.0
8
+ The version of the OpenAPI document: 1.18.0
9
9
  Contact: admin@collegefootballdata.com
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
cbbd/models/draft_pick.py CHANGED
@@ -5,7 +5,7 @@
5
5
 
6
6
  This API is in limited Beta for Patreon subscribers. It may have bugs and is subject to changes. API keys can be acquired from the CollegeFootballData.com website.
7
7
 
8
- The version of the OpenAPI document: 1.17.0
8
+ The version of the OpenAPI document: 1.18.0
9
9
  Contact: admin@collegefootballdata.com
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11