cbbd 1.13.0__py3-none-any.whl → 1.14.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.
- cbbd/__init__.py +6 -2
- cbbd/api/__init__.py +1 -0
- cbbd/api/conferences_api.py +1 -1
- cbbd/api/draft_api.py +1 -1
- cbbd/api/games_api.py +1 -1
- cbbd/api/lines_api.py +1 -1
- cbbd/api/plays_api.py +1 -1
- cbbd/api/rankings_api.py +1 -1
- cbbd/api/ratings_api.py +1 -1
- cbbd/api/recruiting_api.py +211 -0
- cbbd/api/stats_api.py +1 -1
- cbbd/api/teams_api.py +1 -1
- cbbd/api/venues_api.py +1 -1
- cbbd/api_client.py +2 -2
- cbbd/configuration.py +3 -3
- cbbd/exceptions.py +1 -1
- cbbd/models/__init__.py +4 -1
- cbbd/models/adjusted_efficiency_info.py +1 -1
- cbbd/models/adjusted_efficiency_info_rankings.py +1 -1
- cbbd/models/conference_history.py +1 -1
- cbbd/models/conference_history_teams_inner.py +1 -1
- cbbd/models/conference_info.py +1 -1
- cbbd/models/draft_pick.py +1 -1
- cbbd/models/draft_position.py +1 -1
- cbbd/models/draft_team.py +1 -1
- cbbd/models/game_box_score_players.py +1 -1
- cbbd/models/game_box_score_players_players_inner.py +1 -1
- cbbd/models/game_box_score_team.py +1 -1
- cbbd/models/game_box_score_team_stats.py +1 -1
- cbbd/models/game_box_score_team_stats_points.py +1 -1
- cbbd/models/game_info.py +1 -1
- cbbd/models/game_line_info.py +1 -1
- cbbd/models/game_lines.py +1 -1
- cbbd/models/game_media_info.py +1 -1
- cbbd/models/game_media_info_broadcasts_inner.py +1 -1
- cbbd/models/game_status.py +1 -1
- cbbd/models/line_provider_info.py +1 -1
- cbbd/models/play_info.py +1 -1
- cbbd/models/play_info_participants_inner.py +1 -1
- cbbd/models/play_type_info.py +1 -1
- cbbd/models/player_season_stats.py +1 -1
- cbbd/models/player_season_stats_win_shares.py +1 -1
- cbbd/models/poll_team_info.py +1 -1
- cbbd/models/recruit.py +158 -0
- cbbd/models/recruit_committed_to.py +91 -0
- cbbd/models/recruit_hometown.py +91 -0
- cbbd/models/season_type.py +1 -1
- cbbd/models/shot_info.py +1 -1
- cbbd/models/shot_info_location.py +1 -1
- cbbd/models/shot_info_shooter.py +1 -1
- cbbd/models/srs_info.py +1 -1
- cbbd/models/team_info.py +1 -1
- cbbd/models/team_roster.py +1 -1
- cbbd/models/team_roster_player.py +1 -1
- cbbd/models/team_roster_player_hometown.py +1 -1
- cbbd/models/team_season_stats.py +1 -1
- cbbd/models/team_season_unit_stats.py +1 -1
- cbbd/models/team_season_unit_stats_field_goals.py +1 -1
- cbbd/models/team_season_unit_stats_fouls.py +1 -1
- cbbd/models/team_season_unit_stats_four_factors.py +1 -1
- cbbd/models/team_season_unit_stats_points.py +1 -1
- cbbd/models/team_season_unit_stats_rebounds.py +1 -1
- cbbd/models/team_season_unit_stats_turnovers.py +1 -1
- cbbd/models/venue_info.py +1 -1
- cbbd/rest.py +1 -1
- {cbbd-1.13.0.dist-info → cbbd-1.14.1.dist-info}/METADATA +1 -1
- cbbd-1.14.1.dist-info/RECORD +71 -0
- cbbd-1.13.0.dist-info/RECORD +0 -67
- {cbbd-1.13.0.dist-info → cbbd-1.14.1.dist-info}/WHEEL +0 -0
- {cbbd-1.13.0.dist-info → cbbd-1.14.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.
|
10
|
+
The version of the OpenAPI document: 1.14.1
|
11
11
|
Contact: admin@collegefootballdata.com
|
12
12
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
13
13
|
|
@@ -15,7 +15,7 @@
|
|
15
15
|
""" # noqa: E501
|
16
16
|
|
17
17
|
|
18
|
-
__version__ = "1.
|
18
|
+
__version__ = "1.14.1"
|
19
19
|
|
20
20
|
# import apis into sdk package
|
21
21
|
from cbbd.api.conferences_api import ConferencesApi
|
@@ -25,6 +25,7 @@ from cbbd.api.lines_api import LinesApi
|
|
25
25
|
from cbbd.api.plays_api import PlaysApi
|
26
26
|
from cbbd.api.rankings_api import RankingsApi
|
27
27
|
from cbbd.api.ratings_api import RatingsApi
|
28
|
+
from cbbd.api.recruiting_api import RecruitingApi
|
28
29
|
from cbbd.api.stats_api import StatsApi
|
29
30
|
from cbbd.api.teams_api import TeamsApi
|
30
31
|
from cbbd.api.venues_api import VenuesApi
|
@@ -67,6 +68,9 @@ from cbbd.models.play_type_info import PlayTypeInfo
|
|
67
68
|
from cbbd.models.player_season_stats import PlayerSeasonStats
|
68
69
|
from cbbd.models.player_season_stats_win_shares import PlayerSeasonStatsWinShares
|
69
70
|
from cbbd.models.poll_team_info import PollTeamInfo
|
71
|
+
from cbbd.models.recruit import Recruit
|
72
|
+
from cbbd.models.recruit_committed_to import RecruitCommittedTo
|
73
|
+
from cbbd.models.recruit_hometown import RecruitHometown
|
70
74
|
from cbbd.models.season_type import SeasonType
|
71
75
|
from cbbd.models.shot_info import ShotInfo
|
72
76
|
from cbbd.models.shot_info_location import ShotInfoLocation
|
cbbd/api/__init__.py
CHANGED
@@ -8,6 +8,7 @@ from cbbd.api.lines_api import LinesApi
|
|
8
8
|
from cbbd.api.plays_api import PlaysApi
|
9
9
|
from cbbd.api.rankings_api import RankingsApi
|
10
10
|
from cbbd.api.ratings_api import RatingsApi
|
11
|
+
from cbbd.api.recruiting_api import RecruitingApi
|
11
12
|
from cbbd.api.stats_api import StatsApi
|
12
13
|
from cbbd.api.teams_api import TeamsApi
|
13
14
|
from cbbd.api.venues_api import VenuesApi
|
cbbd/api/conferences_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
|
+
The version of the OpenAPI document: 1.14.1
|
9
9
|
Contact: admin@collegefootballdata.com
|
10
10
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
11
11
|
|
cbbd/api/draft_api.py
CHANGED
@@ -5,7 +5,7 @@
|
|
5
5
|
|
6
6
|
This API is in limited Beta for Patreon subscribers. It may have bugs and is subject to changes. API keys can be acquired from the CollegeFootballData.com website.
|
7
7
|
|
8
|
-
The version of the OpenAPI document: 1.
|
8
|
+
The version of the OpenAPI document: 1.14.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
|
+
The version of the OpenAPI document: 1.14.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
|
+
The version of the OpenAPI document: 1.14.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
|
+
The version of the OpenAPI document: 1.14.1
|
9
9
|
Contact: admin@collegefootballdata.com
|
10
10
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
11
11
|
|
cbbd/api/rankings_api.py
CHANGED
@@ -5,7 +5,7 @@
|
|
5
5
|
|
6
6
|
This API is in limited Beta for Patreon subscribers. It may have bugs and is subject to changes. API keys can be acquired from the CollegeFootballData.com website.
|
7
7
|
|
8
|
-
The version of the OpenAPI document: 1.
|
8
|
+
The version of the OpenAPI document: 1.14.1
|
9
9
|
Contact: admin@collegefootballdata.com
|
10
10
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
11
11
|
|
cbbd/api/ratings_api.py
CHANGED
@@ -5,7 +5,7 @@
|
|
5
5
|
|
6
6
|
This API is in limited Beta for Patreon subscribers. It may have bugs and is subject to changes. API keys can be acquired from the CollegeFootballData.com website.
|
7
7
|
|
8
|
-
The version of the OpenAPI document: 1.
|
8
|
+
The version of the OpenAPI document: 1.14.1
|
9
9
|
Contact: admin@collegefootballdata.com
|
10
10
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
11
11
|
|
@@ -0,0 +1,211 @@
|
|
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.14.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.recruit import Recruit
|
28
|
+
|
29
|
+
from cbbd.api_client import ApiClient
|
30
|
+
from cbbd.api_response import ApiResponse
|
31
|
+
from cbbd.exceptions import ( # noqa: F401
|
32
|
+
ApiTypeError,
|
33
|
+
ApiValueError
|
34
|
+
)
|
35
|
+
|
36
|
+
|
37
|
+
class RecruitingApi:
|
38
|
+
"""NOTE: This class is auto generated by OpenAPI Generator
|
39
|
+
Ref: https://openapi-generator.tech
|
40
|
+
|
41
|
+
Do not edit the class manually.
|
42
|
+
"""
|
43
|
+
|
44
|
+
def __init__(self, api_client=None) -> None:
|
45
|
+
if api_client is None:
|
46
|
+
api_client = ApiClient.get_default()
|
47
|
+
self.api_client = api_client
|
48
|
+
|
49
|
+
@validate_arguments
|
50
|
+
def get_recruits(self, year : Annotated[Optional[StrictInt], Field(description="Optional year filter")] = None, team : Annotated[Optional[StrictStr], Field(description="Optional college team filter")] = None, conference : Annotated[Optional[StrictStr], Field(description="Optional college conference filter")] = None, position : Annotated[Optional[StrictStr], Field(description="Optional position filter")] = None, **kwargs) -> List[Recruit]: # noqa: E501
|
51
|
+
"""get_recruits # noqa: E501
|
52
|
+
|
53
|
+
Retrieves historical composite player recruiting ranking and ratings # noqa: E501
|
54
|
+
This method makes a synchronous HTTP request by default. To make an
|
55
|
+
asynchronous HTTP request, please pass async_req=True
|
56
|
+
|
57
|
+
>>> thread = api.get_recruits(year, team, conference, position, async_req=True)
|
58
|
+
>>> result = thread.get()
|
59
|
+
|
60
|
+
:param year: Optional year filter
|
61
|
+
:type year: int
|
62
|
+
:param team: Optional college team filter
|
63
|
+
:type team: str
|
64
|
+
:param conference: Optional college conference filter
|
65
|
+
:type conference: str
|
66
|
+
:param position: Optional position filter
|
67
|
+
:type position: str
|
68
|
+
:param async_req: Whether to execute the request asynchronously.
|
69
|
+
:type async_req: bool, optional
|
70
|
+
:param _request_timeout: timeout setting for this request.
|
71
|
+
If one number provided, it will be total request
|
72
|
+
timeout. It can also be a pair (tuple) of
|
73
|
+
(connection, read) timeouts.
|
74
|
+
:return: Returns the result object.
|
75
|
+
If the method is called asynchronously,
|
76
|
+
returns the request thread.
|
77
|
+
:rtype: List[Recruit]
|
78
|
+
"""
|
79
|
+
kwargs['_return_http_data_only'] = True
|
80
|
+
if '_preload_content' in kwargs:
|
81
|
+
message = "Error! Please call the get_recruits_with_http_info method with `_preload_content` instead and obtain raw data from ApiResponse.raw_data" # noqa: E501
|
82
|
+
raise ValueError(message)
|
83
|
+
return self.get_recruits_with_http_info(year, team, conference, position, **kwargs) # noqa: E501
|
84
|
+
|
85
|
+
@validate_arguments
|
86
|
+
def get_recruits_with_http_info(self, year : Annotated[Optional[StrictInt], Field(description="Optional year filter")] = None, team : Annotated[Optional[StrictStr], Field(description="Optional college team filter")] = None, conference : Annotated[Optional[StrictStr], Field(description="Optional college conference filter")] = None, position : Annotated[Optional[StrictStr], Field(description="Optional position filter")] = None, **kwargs) -> ApiResponse: # noqa: E501
|
87
|
+
"""get_recruits # noqa: E501
|
88
|
+
|
89
|
+
Retrieves historical composite player recruiting ranking and ratings # noqa: E501
|
90
|
+
This method makes a synchronous HTTP request by default. To make an
|
91
|
+
asynchronous HTTP request, please pass async_req=True
|
92
|
+
|
93
|
+
>>> thread = api.get_recruits_with_http_info(year, team, conference, position, async_req=True)
|
94
|
+
>>> result = thread.get()
|
95
|
+
|
96
|
+
:param year: Optional year filter
|
97
|
+
:type year: int
|
98
|
+
:param team: Optional college team filter
|
99
|
+
:type team: str
|
100
|
+
:param conference: Optional college conference filter
|
101
|
+
:type conference: str
|
102
|
+
:param position: Optional position filter
|
103
|
+
:type position: str
|
104
|
+
:param async_req: Whether to execute the request asynchronously.
|
105
|
+
:type async_req: bool, optional
|
106
|
+
:param _preload_content: if False, the ApiResponse.data will
|
107
|
+
be set to none and raw_data will store the
|
108
|
+
HTTP response body without reading/decoding.
|
109
|
+
Default is True.
|
110
|
+
:type _preload_content: bool, optional
|
111
|
+
:param _return_http_data_only: response data instead of ApiResponse
|
112
|
+
object with status code, headers, etc
|
113
|
+
:type _return_http_data_only: bool, optional
|
114
|
+
:param _request_timeout: timeout setting for this request. If one
|
115
|
+
number provided, it will be total request
|
116
|
+
timeout. It can also be a pair (tuple) of
|
117
|
+
(connection, read) timeouts.
|
118
|
+
:param _request_auth: set to override the auth_settings for an a single
|
119
|
+
request; this effectively ignores the authentication
|
120
|
+
in the spec for a single request.
|
121
|
+
:type _request_auth: dict, optional
|
122
|
+
:type _content_type: string, optional: force content-type for the request
|
123
|
+
:return: Returns the result object.
|
124
|
+
If the method is called asynchronously,
|
125
|
+
returns the request thread.
|
126
|
+
:rtype: tuple(List[Recruit], status_code(int), headers(HTTPHeaderDict))
|
127
|
+
"""
|
128
|
+
|
129
|
+
_params = locals()
|
130
|
+
|
131
|
+
_all_params = [
|
132
|
+
'year',
|
133
|
+
'team',
|
134
|
+
'conference',
|
135
|
+
'position'
|
136
|
+
]
|
137
|
+
_all_params.extend(
|
138
|
+
[
|
139
|
+
'async_req',
|
140
|
+
'_return_http_data_only',
|
141
|
+
'_preload_content',
|
142
|
+
'_request_timeout',
|
143
|
+
'_request_auth',
|
144
|
+
'_content_type',
|
145
|
+
'_headers'
|
146
|
+
]
|
147
|
+
)
|
148
|
+
|
149
|
+
# validate the arguments
|
150
|
+
for _key, _val in _params['kwargs'].items():
|
151
|
+
if _key not in _all_params:
|
152
|
+
raise ApiTypeError(
|
153
|
+
"Got an unexpected keyword argument '%s'"
|
154
|
+
" to method get_recruits" % _key
|
155
|
+
)
|
156
|
+
_params[_key] = _val
|
157
|
+
del _params['kwargs']
|
158
|
+
|
159
|
+
_collection_formats = {}
|
160
|
+
|
161
|
+
# process the path parameters
|
162
|
+
_path_params = {}
|
163
|
+
|
164
|
+
# process the query parameters
|
165
|
+
_query_params = []
|
166
|
+
if _params.get('year') is not None: # noqa: E501
|
167
|
+
_query_params.append(('year', _params['year']))
|
168
|
+
|
169
|
+
if _params.get('team') is not None: # noqa: E501
|
170
|
+
_query_params.append(('team', _params['team']))
|
171
|
+
|
172
|
+
if _params.get('conference') is not None: # noqa: E501
|
173
|
+
_query_params.append(('conference', _params['conference']))
|
174
|
+
|
175
|
+
if _params.get('position') is not None: # noqa: E501
|
176
|
+
_query_params.append(('position', _params['position']))
|
177
|
+
|
178
|
+
# process the header parameters
|
179
|
+
_header_params = dict(_params.get('_headers', {}))
|
180
|
+
# process the form parameters
|
181
|
+
_form_params = []
|
182
|
+
_files = {}
|
183
|
+
# process the body parameter
|
184
|
+
_body_params = None
|
185
|
+
# set the HTTP header `Accept`
|
186
|
+
_header_params['Accept'] = self.api_client.select_header_accept(
|
187
|
+
['application/json']) # noqa: E501
|
188
|
+
|
189
|
+
# authentication setting
|
190
|
+
_auth_settings = ['apiKey'] # noqa: E501
|
191
|
+
|
192
|
+
_response_types_map = {
|
193
|
+
'200': "List[Recruit]",
|
194
|
+
}
|
195
|
+
|
196
|
+
return self.api_client.call_api(
|
197
|
+
'/recruiting/players', 'GET',
|
198
|
+
_path_params,
|
199
|
+
_query_params,
|
200
|
+
_header_params,
|
201
|
+
body=_body_params,
|
202
|
+
post_params=_form_params,
|
203
|
+
files=_files,
|
204
|
+
response_types_map=_response_types_map,
|
205
|
+
auth_settings=_auth_settings,
|
206
|
+
async_req=_params.get('async_req'),
|
207
|
+
_return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
|
208
|
+
_preload_content=_params.get('_preload_content', True),
|
209
|
+
_request_timeout=_params.get('_request_timeout'),
|
210
|
+
collection_formats=_collection_formats,
|
211
|
+
_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.
|
8
|
+
The version of the OpenAPI document: 1.14.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
|
+
The version of the OpenAPI document: 1.14.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
|
+
The version of the OpenAPI document: 1.14.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
|
+
The version of the OpenAPI document: 1.14.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.
|
81
|
+
self.user_agent = 'OpenAPI-Generator/1.14.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
|
+
The version of the OpenAPI document: 1.14.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.
|
380
|
-
"SDK Package Version: 1.
|
379
|
+
"Version of the API: 1.14.1\n"\
|
380
|
+
"SDK Package Version: 1.14.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
|
+
The version of the OpenAPI document: 1.14.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.
|
9
|
+
The version of the OpenAPI document: 1.14.1
|
10
10
|
Contact: admin@collegefootballdata.com
|
11
11
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
12
12
|
|
@@ -41,6 +41,9 @@ from cbbd.models.play_type_info import PlayTypeInfo
|
|
41
41
|
from cbbd.models.player_season_stats import PlayerSeasonStats
|
42
42
|
from cbbd.models.player_season_stats_win_shares import PlayerSeasonStatsWinShares
|
43
43
|
from cbbd.models.poll_team_info import PollTeamInfo
|
44
|
+
from cbbd.models.recruit import Recruit
|
45
|
+
from cbbd.models.recruit_committed_to import RecruitCommittedTo
|
46
|
+
from cbbd.models.recruit_hometown import RecruitHometown
|
44
47
|
from cbbd.models.season_type import SeasonType
|
45
48
|
from cbbd.models.shot_info import ShotInfo
|
46
49
|
from cbbd.models.shot_info_location import ShotInfoLocation
|
@@ -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
|
+
The version of the OpenAPI document: 1.14.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
|
+
The version of the OpenAPI document: 1.14.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
|
+
The version of the OpenAPI document: 1.14.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
|
+
The version of the OpenAPI document: 1.14.1
|
9
9
|
Contact: admin@collegefootballdata.com
|
10
10
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
11
11
|
|
cbbd/models/conference_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
|
+
The version of the OpenAPI document: 1.14.1
|
9
9
|
Contact: admin@collegefootballdata.com
|
10
10
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
11
11
|
|
cbbd/models/draft_pick.py
CHANGED
@@ -5,7 +5,7 @@
|
|
5
5
|
|
6
6
|
This API is in limited Beta for Patreon subscribers. It may have bugs and is subject to changes. API keys can be acquired from the CollegeFootballData.com website.
|
7
7
|
|
8
|
-
The version of the OpenAPI document: 1.
|
8
|
+
The version of the OpenAPI document: 1.14.1
|
9
9
|
Contact: admin@collegefootballdata.com
|
10
10
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
11
11
|
|
cbbd/models/draft_position.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
|
+
The version of the OpenAPI document: 1.14.1
|
9
9
|
Contact: admin@collegefootballdata.com
|
10
10
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
11
11
|
|
cbbd/models/draft_team.py
CHANGED
@@ -5,7 +5,7 @@
|
|
5
5
|
|
6
6
|
This API is in limited Beta for Patreon subscribers. It may have bugs and is subject to changes. API keys can be acquired from the CollegeFootballData.com website.
|
7
7
|
|
8
|
-
The version of the OpenAPI document: 1.
|
8
|
+
The version of the OpenAPI document: 1.14.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
|
+
The version of the OpenAPI document: 1.14.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
|
+
The version of the OpenAPI document: 1.14.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
|
+
The version of the OpenAPI document: 1.14.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
|
+
The version of the OpenAPI document: 1.14.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
|
+
The version of the OpenAPI document: 1.14.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
|
+
The version of the OpenAPI document: 1.14.1
|
9
9
|
Contact: admin@collegefootballdata.com
|
10
10
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
11
11
|
|
cbbd/models/game_line_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
|
+
The version of the OpenAPI document: 1.14.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
|
+
The version of the OpenAPI document: 1.14.1
|
9
9
|
Contact: admin@collegefootballdata.com
|
10
10
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
11
11
|
|
cbbd/models/game_media_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
|
+
The version of the OpenAPI document: 1.14.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
|
+
The version of the OpenAPI document: 1.14.1
|
9
9
|
Contact: admin@collegefootballdata.com
|
10
10
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
11
11
|
|
cbbd/models/game_status.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
|
+
The version of the OpenAPI document: 1.14.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
|
+
The version of the OpenAPI document: 1.14.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
|
+
The version of the OpenAPI document: 1.14.1
|
9
9
|
Contact: admin@collegefootballdata.com
|
10
10
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
11
11
|
|