cbbd 1.3.0__py3-none-any.whl → 1.4.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 (54) hide show
  1. cbbd/__init__.py +4 -2
  2. cbbd/api/__init__.py +1 -0
  3. cbbd/api/conferences_api.py +1 -1
  4. cbbd/api/games_api.py +1 -1
  5. cbbd/api/lines_api.py +1 -1
  6. cbbd/api/plays_api.py +1 -1
  7. cbbd/api/ratings_api.py +203 -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 +2 -1
  15. cbbd/models/conference_history.py +1 -1
  16. cbbd/models/conference_history_teams_inner.py +1 -1
  17. cbbd/models/conference_info.py +1 -1
  18. cbbd/models/game_box_score_players.py +1 -1
  19. cbbd/models/game_box_score_players_players_inner.py +1 -1
  20. cbbd/models/game_box_score_team.py +1 -1
  21. cbbd/models/game_box_score_team_stats.py +1 -1
  22. cbbd/models/game_box_score_team_stats_points.py +1 -1
  23. cbbd/models/game_info.py +1 -1
  24. cbbd/models/game_line_info.py +1 -1
  25. cbbd/models/game_lines.py +1 -1
  26. cbbd/models/game_media_info.py +1 -1
  27. cbbd/models/game_media_info_broadcasts_inner.py +1 -1
  28. cbbd/models/game_status.py +1 -1
  29. cbbd/models/line_provider_info.py +1 -1
  30. cbbd/models/play_info.py +1 -1
  31. cbbd/models/play_info_participants_inner.py +1 -1
  32. cbbd/models/play_type_info.py +1 -1
  33. cbbd/models/player_season_stats.py +1 -1
  34. cbbd/models/season_type.py +1 -1
  35. cbbd/models/srs_info.py +80 -0
  36. cbbd/models/team_info.py +1 -1
  37. cbbd/models/team_roster.py +1 -1
  38. cbbd/models/team_roster_player.py +1 -1
  39. cbbd/models/team_roster_player_hometown.py +1 -1
  40. cbbd/models/team_season_stats.py +1 -1
  41. cbbd/models/team_season_unit_stats.py +1 -1
  42. cbbd/models/team_season_unit_stats_field_goals.py +1 -1
  43. cbbd/models/team_season_unit_stats_fouls.py +1 -1
  44. cbbd/models/team_season_unit_stats_four_factors.py +1 -1
  45. cbbd/models/team_season_unit_stats_points.py +1 -1
  46. cbbd/models/team_season_unit_stats_rebounds.py +1 -1
  47. cbbd/models/team_season_unit_stats_turnovers.py +1 -1
  48. cbbd/models/venue_info.py +1 -1
  49. cbbd/rest.py +1 -1
  50. {cbbd-1.3.0.dist-info → cbbd-1.4.0.dist-info}/METADATA +1 -1
  51. cbbd-1.4.0.dist-info/RECORD +55 -0
  52. cbbd-1.3.0.dist-info/RECORD +0 -53
  53. {cbbd-1.3.0.dist-info → cbbd-1.4.0.dist-info}/WHEEL +0 -0
  54. {cbbd-1.3.0.dist-info → cbbd-1.4.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.4.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.4.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
@@ -58,6 +59,7 @@ from cbbd.models.play_info_participants_inner import PlayInfoParticipantsInner
58
59
  from cbbd.models.play_type_info import PlayTypeInfo
59
60
  from cbbd.models.player_season_stats import PlayerSeasonStats
60
61
  from cbbd.models.season_type import SeasonType
62
+ from cbbd.models.srs_info import SrsInfo
61
63
  from cbbd.models.team_info import TeamInfo
62
64
  from cbbd.models.team_roster import TeamRoster
63
65
  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.4.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.4.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.4.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.4.0
9
9
  Contact: admin@collegefootballdata.com
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -0,0 +1,203 @@
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.4.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.srs_info import SrsInfo
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 RatingsApi:
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_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
51
+ """get_srs # noqa: E501
52
+
53
+ Retrieves SRS ratings for the provided season, team, or conference. # 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_srs(season, team, conference, async_req=True)
58
+ >>> result = thread.get()
59
+
60
+ :param season: Optional season filter
61
+ :type season: int
62
+ :param team: Optional team filter
63
+ :type team: str
64
+ :param conference: Optional conference abbreviation filter
65
+ :type conference: str
66
+ :param async_req: Whether to execute the request asynchronously.
67
+ :type async_req: bool, optional
68
+ :param _request_timeout: timeout setting for this request.
69
+ If one number provided, it will be total request
70
+ timeout. It can also be a pair (tuple) of
71
+ (connection, read) timeouts.
72
+ :return: Returns the result object.
73
+ If the method is called asynchronously,
74
+ returns the request thread.
75
+ :rtype: List[SrsInfo]
76
+ """
77
+ kwargs['_return_http_data_only'] = True
78
+ if '_preload_content' in kwargs:
79
+ 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
80
+ raise ValueError(message)
81
+ return self.get_srs_with_http_info(season, team, conference, **kwargs) # noqa: E501
82
+
83
+ @validate_arguments
84
+ 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
85
+ """get_srs # noqa: E501
86
+
87
+ Retrieves SRS ratings for the provided season, team, or conference. # noqa: E501
88
+ This method makes a synchronous HTTP request by default. To make an
89
+ asynchronous HTTP request, please pass async_req=True
90
+
91
+ >>> thread = api.get_srs_with_http_info(season, team, conference, async_req=True)
92
+ >>> result = thread.get()
93
+
94
+ :param season: Optional season filter
95
+ :type season: int
96
+ :param team: Optional team filter
97
+ :type team: str
98
+ :param conference: Optional conference abbreviation filter
99
+ :type conference: str
100
+ :param async_req: Whether to execute the request asynchronously.
101
+ :type async_req: bool, optional
102
+ :param _preload_content: if False, the ApiResponse.data will
103
+ be set to none and raw_data will store the
104
+ HTTP response body without reading/decoding.
105
+ Default is True.
106
+ :type _preload_content: bool, optional
107
+ :param _return_http_data_only: response data instead of ApiResponse
108
+ object with status code, headers, etc
109
+ :type _return_http_data_only: bool, optional
110
+ :param _request_timeout: timeout setting for this request. If one
111
+ number provided, it will be total request
112
+ timeout. It can also be a pair (tuple) of
113
+ (connection, read) timeouts.
114
+ :param _request_auth: set to override the auth_settings for an a single
115
+ request; this effectively ignores the authentication
116
+ in the spec for a single request.
117
+ :type _request_auth: dict, optional
118
+ :type _content_type: string, optional: force content-type for the request
119
+ :return: Returns the result object.
120
+ If the method is called asynchronously,
121
+ returns the request thread.
122
+ :rtype: tuple(List[SrsInfo], status_code(int), headers(HTTPHeaderDict))
123
+ """
124
+
125
+ _params = locals()
126
+
127
+ _all_params = [
128
+ 'season',
129
+ 'team',
130
+ 'conference'
131
+ ]
132
+ _all_params.extend(
133
+ [
134
+ 'async_req',
135
+ '_return_http_data_only',
136
+ '_preload_content',
137
+ '_request_timeout',
138
+ '_request_auth',
139
+ '_content_type',
140
+ '_headers'
141
+ ]
142
+ )
143
+
144
+ # validate the arguments
145
+ for _key, _val in _params['kwargs'].items():
146
+ if _key not in _all_params:
147
+ raise ApiTypeError(
148
+ "Got an unexpected keyword argument '%s'"
149
+ " to method get_srs" % _key
150
+ )
151
+ _params[_key] = _val
152
+ del _params['kwargs']
153
+
154
+ _collection_formats = {}
155
+
156
+ # process the path parameters
157
+ _path_params = {}
158
+
159
+ # process the query parameters
160
+ _query_params = []
161
+ if _params.get('season') is not None: # noqa: E501
162
+ _query_params.append(('season', _params['season']))
163
+
164
+ if _params.get('team') is not None: # noqa: E501
165
+ _query_params.append(('team', _params['team']))
166
+
167
+ if _params.get('conference') is not None: # noqa: E501
168
+ _query_params.append(('conference', _params['conference']))
169
+
170
+ # process the header parameters
171
+ _header_params = dict(_params.get('_headers', {}))
172
+ # process the form parameters
173
+ _form_params = []
174
+ _files = {}
175
+ # process the body parameter
176
+ _body_params = None
177
+ # set the HTTP header `Accept`
178
+ _header_params['Accept'] = self.api_client.select_header_accept(
179
+ ['application/json']) # noqa: E501
180
+
181
+ # authentication setting
182
+ _auth_settings = ['apiKey'] # noqa: E501
183
+
184
+ _response_types_map = {
185
+ '200': "List[SrsInfo]",
186
+ }
187
+
188
+ return self.api_client.call_api(
189
+ '/ratings/srs', 'GET',
190
+ _path_params,
191
+ _query_params,
192
+ _header_params,
193
+ body=_body_params,
194
+ post_params=_form_params,
195
+ files=_files,
196
+ response_types_map=_response_types_map,
197
+ auth_settings=_auth_settings,
198
+ async_req=_params.get('async_req'),
199
+ _return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
200
+ _preload_content=_params.get('_preload_content', True),
201
+ _request_timeout=_params.get('_request_timeout'),
202
+ collection_formats=_collection_formats,
203
+ _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.4.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.4.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.4.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.4.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.4.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.4.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.4.0\n"\
380
+ "SDK Package Version: 1.4.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.4.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.4.0
10
10
  Contact: admin@collegefootballdata.com
11
11
  Generated by OpenAPI Generator (https://openapi-generator.tech)
12
12
 
@@ -35,6 +35,7 @@ from cbbd.models.play_info_participants_inner import PlayInfoParticipantsInner
35
35
  from cbbd.models.play_type_info import PlayTypeInfo
36
36
  from cbbd.models.player_season_stats import PlayerSeasonStats
37
37
  from cbbd.models.season_type import SeasonType
38
+ from cbbd.models.srs_info import SrsInfo
38
39
  from cbbd.models.team_info import TeamInfo
39
40
  from cbbd.models.team_roster import TeamRoster
40
41
  from cbbd.models.team_roster_player import TeamRosterPlayer
@@ -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.4.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.4.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.4.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.4.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.4.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.4.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.4.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.4.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.4.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.4.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.4.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.4.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.4.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.4.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.4.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.4.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.4.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.4.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.4.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.4.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.4.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.4.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.4.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.4.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.4.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.4.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.4.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.4.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.4.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.4.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.4.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.4.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.4.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.4.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.4.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.4.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,55 @@
1
+ cbbd/__init__.py,sha256=cPM-gYnknR5upXcbJzAs61P4Lgg2Uty8NhfXWOvDpaI,3473
2
+ cbbd/api_client.py,sha256=5JTHnHBiYJhennimoF7kxVjj3zNI9kniikTlgg3h-rU,29894
3
+ cbbd/api_response.py,sha256=uCehWdXXDnAO2HAHGKe0SgpQ_mJiGDbcu-BHDF3n_IM,852
4
+ cbbd/configuration.py,sha256=52gCo-_NYgD-KS_XZf4JAFYuO-P76m9-QZ70Fj-nSOU,14796
5
+ cbbd/exceptions.py,sha256=m2exYkD5iCFSCzYyIVZ6v3U1Hp4XIruF549hvYWPFnY,5545
6
+ cbbd/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
7
+ cbbd/rest.py,sha256=KfpvKsHwgUgC8N1c3rBivq5FXu-uJpv-3-AziSV6PUY,14162
8
+ cbbd/api/__init__.py,sha256=eZkj51ZLdv2e_6U9bEPVhek2eV3QDX6xyLoDQKMaGF4,386
9
+ cbbd/api/conferences_api.py,sha256=O_gNYuhG6_b1x_32Rw08pXvHbK2Bjm7fB_AgJfGBcKM,13078
10
+ cbbd/api/games_api.py,sha256=nc4GdSo4HeOsVjJbYII-oLR_XsTS4Xde4hrM1ZJCof8,41194
11
+ cbbd/api/lines_api.py,sha256=u6rjNgT3x1azKnMJhJEehqDsJ83wuwexXXmfh3sx3-I,15756
12
+ cbbd/api/plays_api.py,sha256=2cjrOz_WxxJ7GS9_NzGp0atZBVjd1RvEb1XkTAvbhWc,32183
13
+ cbbd/api/ratings_api.py,sha256=bzlUE-TdtOf6kakbU5LSirwexivjwr7ieCmuE2aKZWs,8288
14
+ cbbd/api/stats_api.py,sha256=frFBbG06WChlFuBlkYFYXC4-3OFZd1Hq1W0aWa1YDe8,20182
15
+ cbbd/api/teams_api.py,sha256=oevu57ke5zttiyNTy86RDg3wbLrs1zO6_C83oi6gV9Y,14207
16
+ cbbd/api/venues_api.py,sha256=3RKyAEHzRmBchWunBjdx4djx03Oz9EwqVvoPJddjw4k,6567
17
+ cbbd/models/__init__.py,sha256=y1C6vMjKhuJzVwW5dbjKA1J2TPDC9u8Jd_PGiunnqHk,2681
18
+ cbbd/models/conference_history.py,sha256=loD1N1wxlPf1phsHH9-IglY3Gwt8nbv_Amz97eYXGVg,3083
19
+ cbbd/models/conference_history_teams_inner.py,sha256=ExVqVJ-Eb5XcucdakXx7opCg49KRpxcMbR6h4Vi9aM0,3129
20
+ cbbd/models/conference_info.py,sha256=GLF9SvCGsdRyKO1LYcf4ouBNFu_yhWgojO18sNbXcQ0,2436
21
+ cbbd/models/game_box_score_players.py,sha256=Yf8HLK7PHwXAZMkHkUENz-aGhNQdR2vOB4lK_2dCvuQ,6355
22
+ cbbd/models/game_box_score_players_players_inner.py,sha256=hv7ikXoDLo7qzwz1-4vYihTgdb7DwG8H3dFzsi2ucWc,12092
23
+ cbbd/models/game_box_score_team.py,sha256=tfYVtjbZtsCFPpFe1WgCExbKbRb-LUed3Qa6UFv46YA,6386
24
+ cbbd/models/game_box_score_team_stats.py,sha256=iurk4DGRZPFAAgxV1HRsU-fSvaZSa5CrE_QTHIlFXLI,8686
25
+ cbbd/models/game_box_score_team_stats_points.py,sha256=fp9ErG7MCHgXtEvea1BMFUZb7LJ8pWY7vBKIwXoOS10,4297
26
+ cbbd/models/game_info.py,sha256=_EgSfN-8DloQmUhYSDHyi654XwTit2FPzsbkr2IX2TM,9614
27
+ cbbd/models/game_line_info.py,sha256=DwreVyNHI4ZOfT3Jib4-FVn5mB2CHX6nXfyIS736lhI,4370
28
+ cbbd/models/game_lines.py,sha256=3zD4wDMghE6PaKLFkfVxMS3RiakdPsi6mHUA31131_8,5076
29
+ cbbd/models/game_media_info.py,sha256=ZEEFTDbPaxwAMOdV5QSB_HShGJyXL0-JWlANwOinNnU,5671
30
+ cbbd/models/game_media_info_broadcasts_inner.py,sha256=G43BeGk51J1RrtiU-4bpHhDux4Ngwh1R851OuCG3Z9k,2324
31
+ cbbd/models/game_status.py,sha256=IjJaIK0di-1mfGKuVUZeyuJWAUW4d_9xcJLzFv3SQlk,948
32
+ cbbd/models/line_provider_info.py,sha256=MKJNxAg8RvtHR-XKvmy_KF-NCZbWhX5l0R8sz5V4TvU,2093
33
+ cbbd/models/play_info.py,sha256=2HvSJvQTlBocACW9YWPvPCq4pE7vi_RdwW8K_nwNkso,8576
34
+ cbbd/models/play_info_participants_inner.py,sha256=mkF6i97fkmBHH-Amio6S0TyTgtbkMTeT7Eb-HNr4_uE,2165
35
+ cbbd/models/play_type_info.py,sha256=7hb_LG9fZ0aQtFobGLiUlE3XjclA-7AqA3s9knAE6sI,2061
36
+ cbbd/models/player_season_stats.py,sha256=M4JalcZJbezqeoDzLwLStavJCSIGtVRo2N8-LoaE0RI,11712
37
+ cbbd/models/season_type.py,sha256=KeJ8JujeIpx5MX3X12JMtVFdOhk0qAO518GDh7X9pcA,894
38
+ cbbd/models/srs_info.py,sha256=ABIetqKYhezvK0y18WNdC1uZ2k87XuGjljEtyw03-D4,2394
39
+ cbbd/models/team_info.py,sha256=Dvn4Hxf-U4BTiuU_qE-9Ycj4JJYlpG6tNQfZa2m2ZwY,6665
40
+ cbbd/models/team_roster.py,sha256=iLD0YXgpdYJvVkWFZBYMUBueStisIi36UyhAYqazIxc,3294
41
+ cbbd/models/team_roster_player.py,sha256=nY_dU5xXxCPlsSbd8jZpR53jpl78vs0yi9expehMZCU,5353
42
+ cbbd/models/team_roster_player_hometown.py,sha256=bo4rJp1Q6w8Bi6caqO5COCttt6r4YzQbdz_5xHSQPQ8,2906
43
+ cbbd/models/team_season_stats.py,sha256=OPWLkHHFG8DQn3SvMjWaXWbga9iTiHi5w1fDOg3bXzU,4262
44
+ cbbd/models/team_season_unit_stats.py,sha256=NNfd_qkPZvzJ1MtMnmpoQOOaekeIBbvYSUvTOHgeJPU,8286
45
+ cbbd/models/team_season_unit_stats_field_goals.py,sha256=XeeNEB3pViRc2DblBCshxTcxNH3mk6Nm3cjJD1BtiCY,3026
46
+ cbbd/models/team_season_unit_stats_fouls.py,sha256=8nW2rz2sMkr9_4dqVQGuhmmOsuivV754woQ0dXSqt7I,3034
47
+ cbbd/models/team_season_unit_stats_four_factors.py,sha256=78F9JitIV1JAu49qvtQh-1cwdubNPm6mAdByE5GYrhY,3883
48
+ cbbd/models/team_season_unit_stats_points.py,sha256=xfgXUK23ro5vc_z7y77eiDmIhvPxYvq3qJ5XxFqCJNE,3498
49
+ cbbd/models/team_season_unit_stats_rebounds.py,sha256=iHgb6EPTTWp4yVTOBMHjzAaXui3KTjVKNJrV8S6e-Jc,3066
50
+ cbbd/models/team_season_unit_stats_turnovers.py,sha256=g72P6NfLRfhh66XitRjW4v-FFJlg23BU7smyZuu-xYk,2763
51
+ cbbd/models/venue_info.py,sha256=VE68eoxSJfUG4ynl0PzMpnOArLG7SJNgCAk0n4wWaJ4,3331
52
+ cbbd-1.4.0.dist-info/METADATA,sha256=hDvy9bUqwDtkrlmCx6N8wF99ikxoayFgatZ_kHkVXhE,763
53
+ cbbd-1.4.0.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
54
+ cbbd-1.4.0.dist-info/top_level.txt,sha256=d8efSEMxRPpV_X-2jtQvf9S-EI4HoFQpCEOZCjDxT24,5
55
+ cbbd-1.4.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