cbbd 1.7.3__py3-none-any.whl → 1.8.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.
- cbbd/__init__.py +4 -2
- cbbd/api/conferences_api.py +1 -1
- cbbd/api/games_api.py +1 -1
- cbbd/api/lines_api.py +1 -1
- cbbd/api/plays_api.py +59 -27
- cbbd/api/ratings_api.py +1 -1
- 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 +3 -1
- cbbd/models/adjusted_efficiency_info.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/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 +14 -3
- 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/season_type.py +1 -1
- cbbd/models/shot_info.py +104 -0
- cbbd/models/shot_info_shooter.py +74 -0
- 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.7.3.dist-info → cbbd-1.8.0.dist-info}/METADATA +1 -1
- cbbd-1.8.0.dist-info/RECORD +58 -0
- cbbd-1.7.3.dist-info/RECORD +0 -56
- {cbbd-1.7.3.dist-info → cbbd-1.8.0.dist-info}/WHEEL +0 -0
- {cbbd-1.7.3.dist-info → cbbd-1.8.0.dist-info}/top_level.txt +0 -0
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.8.0
|
9
9
|
Contact: admin@collegefootballdata.com
|
10
10
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
11
11
|
|
@@ -23,6 +23,7 @@ from typing import List, Optional, Union
|
|
23
23
|
from pydantic import BaseModel, Field, StrictBool, StrictFloat, StrictInt, StrictStr, conlist
|
24
24
|
from cbbd.models.play_info_participants_inner import PlayInfoParticipantsInner
|
25
25
|
from cbbd.models.season_type import SeasonType
|
26
|
+
from cbbd.models.shot_info import ShotInfo
|
26
27
|
|
27
28
|
class PlayInfo(BaseModel):
|
28
29
|
"""
|
@@ -56,7 +57,8 @@ class PlayInfo(BaseModel):
|
|
56
57
|
wallclock: Optional[datetime] = Field(...)
|
57
58
|
play_text: Optional[StrictStr] = Field(default=..., alias="playText")
|
58
59
|
participants: conlist(PlayInfoParticipantsInner) = Field(...)
|
59
|
-
|
60
|
+
shot_info: Optional[ShotInfo] = Field(default=..., alias="shotInfo")
|
61
|
+
__properties = ["id", "sourceId", "gameId", "gameSourceId", "gameStartDate", "season", "seasonType", "gameType", "playType", "isHomeTeam", "teamId", "team", "conference", "opponentId", "opponent", "opponentConference", "period", "clock", "secondsRemaining", "homeScore", "awayScore", "homeWinProbability", "scoringPlay", "shootingPlay", "scoreValue", "wallclock", "playText", "participants", "shotInfo"]
|
60
62
|
|
61
63
|
class Config:
|
62
64
|
"""Pydantic configuration"""
|
@@ -89,6 +91,9 @@ class PlayInfo(BaseModel):
|
|
89
91
|
if _item:
|
90
92
|
_items.append(_item.to_dict())
|
91
93
|
_dict['participants'] = _items
|
94
|
+
# override the default output from pydantic by calling `to_dict()` of shot_info
|
95
|
+
if self.shot_info:
|
96
|
+
_dict['shotInfo'] = self.shot_info.to_dict()
|
92
97
|
# set to None if is_home_team (nullable) is None
|
93
98
|
# and __fields_set__ contains the field
|
94
99
|
if self.is_home_team is None and "is_home_team" in self.__fields_set__:
|
@@ -154,6 +159,11 @@ class PlayInfo(BaseModel):
|
|
154
159
|
if self.play_text is None and "play_text" in self.__fields_set__:
|
155
160
|
_dict['playText'] = None
|
156
161
|
|
162
|
+
# set to None if shot_info (nullable) is None
|
163
|
+
# and __fields_set__ contains the field
|
164
|
+
if self.shot_info is None and "shot_info" in self.__fields_set__:
|
165
|
+
_dict['shotInfo'] = None
|
166
|
+
|
157
167
|
return _dict
|
158
168
|
|
159
169
|
@classmethod
|
@@ -193,7 +203,8 @@ class PlayInfo(BaseModel):
|
|
193
203
|
"score_value": obj.get("scoreValue"),
|
194
204
|
"wallclock": obj.get("wallclock"),
|
195
205
|
"play_text": obj.get("playText"),
|
196
|
-
"participants": [PlayInfoParticipantsInner.from_dict(_item) for _item in obj.get("participants")] if obj.get("participants") is not None else None
|
206
|
+
"participants": [PlayInfoParticipantsInner.from_dict(_item) for _item in obj.get("participants")] if obj.get("participants") is not None else None,
|
207
|
+
"shot_info": ShotInfo.from_dict(obj.get("shotInfo")) if obj.get("shotInfo") is not None else None
|
197
208
|
})
|
198
209
|
return _obj
|
199
210
|
|
@@ -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.8.0
|
9
9
|
Contact: admin@collegefootballdata.com
|
10
10
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
11
11
|
|
cbbd/models/play_type_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.8.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.
|
8
|
+
The version of the OpenAPI document: 1.8.0
|
9
9
|
Contact: admin@collegefootballdata.com
|
10
10
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
11
11
|
|
cbbd/models/season_type.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.8.0
|
9
9
|
Contact: admin@collegefootballdata.com
|
10
10
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
11
11
|
|
cbbd/models/shot_info.py
ADDED
@@ -0,0 +1,104 @@
|
|
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.8.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 Optional
|
23
|
+
from pydantic import BaseModel, Field, StrictBool, StrictStr, validator
|
24
|
+
from cbbd.models.shot_info_shooter import ShotInfoShooter
|
25
|
+
|
26
|
+
class ShotInfo(BaseModel):
|
27
|
+
"""
|
28
|
+
ShotInfo
|
29
|
+
"""
|
30
|
+
shooter: Optional[ShotInfoShooter] = Field(...)
|
31
|
+
made: StrictBool = Field(...)
|
32
|
+
range: StrictStr = Field(...)
|
33
|
+
assisted: StrictBool = Field(...)
|
34
|
+
assisted_by: Optional[ShotInfoShooter] = Field(default=..., alias="assistedBy")
|
35
|
+
__properties = ["shooter", "made", "range", "assisted", "assistedBy"]
|
36
|
+
|
37
|
+
@validator('range')
|
38
|
+
def range_validate_enum(cls, value):
|
39
|
+
"""Validates the enum"""
|
40
|
+
if value not in ('rim', 'jumper', 'three_pointer', 'free_throw',):
|
41
|
+
raise ValueError("must be one of enum values ('rim', 'jumper', 'three_pointer', 'free_throw')")
|
42
|
+
return value
|
43
|
+
|
44
|
+
class Config:
|
45
|
+
"""Pydantic configuration"""
|
46
|
+
allow_population_by_field_name = True
|
47
|
+
validate_assignment = True
|
48
|
+
|
49
|
+
def to_str(self) -> str:
|
50
|
+
"""Returns the string representation of the model using alias"""
|
51
|
+
return pprint.pformat(self.dict(by_alias=True))
|
52
|
+
|
53
|
+
def to_json(self) -> str:
|
54
|
+
"""Returns the JSON representation of the model using alias"""
|
55
|
+
return json.dumps(self.to_dict())
|
56
|
+
|
57
|
+
@classmethod
|
58
|
+
def from_json(cls, json_str: str) -> ShotInfo:
|
59
|
+
"""Create an instance of ShotInfo from a JSON string"""
|
60
|
+
return cls.from_dict(json.loads(json_str))
|
61
|
+
|
62
|
+
def to_dict(self):
|
63
|
+
"""Returns the dictionary representation of the model using alias"""
|
64
|
+
_dict = self.dict(by_alias=True,
|
65
|
+
exclude={
|
66
|
+
},
|
67
|
+
exclude_none=True)
|
68
|
+
# override the default output from pydantic by calling `to_dict()` of shooter
|
69
|
+
if self.shooter:
|
70
|
+
_dict['shooter'] = self.shooter.to_dict()
|
71
|
+
# override the default output from pydantic by calling `to_dict()` of assisted_by
|
72
|
+
if self.assisted_by:
|
73
|
+
_dict['assistedBy'] = self.assisted_by.to_dict()
|
74
|
+
# set to None if shooter (nullable) is None
|
75
|
+
# and __fields_set__ contains the field
|
76
|
+
if self.shooter is None and "shooter" in self.__fields_set__:
|
77
|
+
_dict['shooter'] = None
|
78
|
+
|
79
|
+
# set to None if assisted_by (nullable) is None
|
80
|
+
# and __fields_set__ contains the field
|
81
|
+
if self.assisted_by is None and "assisted_by" in self.__fields_set__:
|
82
|
+
_dict['assistedBy'] = None
|
83
|
+
|
84
|
+
return _dict
|
85
|
+
|
86
|
+
@classmethod
|
87
|
+
def from_dict(cls, obj: dict) -> ShotInfo:
|
88
|
+
"""Create an instance of ShotInfo from a dict"""
|
89
|
+
if obj is None:
|
90
|
+
return None
|
91
|
+
|
92
|
+
if not isinstance(obj, dict):
|
93
|
+
return ShotInfo.parse_obj(obj)
|
94
|
+
|
95
|
+
_obj = ShotInfo.parse_obj({
|
96
|
+
"shooter": ShotInfoShooter.from_dict(obj.get("shooter")) if obj.get("shooter") is not None else None,
|
97
|
+
"made": obj.get("made"),
|
98
|
+
"range": obj.get("range"),
|
99
|
+
"assisted": obj.get("assisted"),
|
100
|
+
"assisted_by": ShotInfoShooter.from_dict(obj.get("assistedBy")) if obj.get("assistedBy") is not None else None
|
101
|
+
})
|
102
|
+
return _obj
|
103
|
+
|
104
|
+
|
@@ -0,0 +1,74 @@
|
|
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.8.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
|
+
|
23
|
+
from pydantic import BaseModel, Field, StrictInt, StrictStr
|
24
|
+
|
25
|
+
class ShotInfoShooter(BaseModel):
|
26
|
+
"""
|
27
|
+
ShotInfoShooter
|
28
|
+
"""
|
29
|
+
name: StrictStr = Field(...)
|
30
|
+
id: StrictInt = Field(...)
|
31
|
+
__properties = ["name", "id"]
|
32
|
+
|
33
|
+
class Config:
|
34
|
+
"""Pydantic configuration"""
|
35
|
+
allow_population_by_field_name = True
|
36
|
+
validate_assignment = True
|
37
|
+
|
38
|
+
def to_str(self) -> str:
|
39
|
+
"""Returns the string representation of the model using alias"""
|
40
|
+
return pprint.pformat(self.dict(by_alias=True))
|
41
|
+
|
42
|
+
def to_json(self) -> str:
|
43
|
+
"""Returns the JSON representation of the model using alias"""
|
44
|
+
return json.dumps(self.to_dict())
|
45
|
+
|
46
|
+
@classmethod
|
47
|
+
def from_json(cls, json_str: str) -> ShotInfoShooter:
|
48
|
+
"""Create an instance of ShotInfoShooter from a JSON string"""
|
49
|
+
return cls.from_dict(json.loads(json_str))
|
50
|
+
|
51
|
+
def to_dict(self):
|
52
|
+
"""Returns the dictionary representation of the model using alias"""
|
53
|
+
_dict = self.dict(by_alias=True,
|
54
|
+
exclude={
|
55
|
+
},
|
56
|
+
exclude_none=True)
|
57
|
+
return _dict
|
58
|
+
|
59
|
+
@classmethod
|
60
|
+
def from_dict(cls, obj: dict) -> ShotInfoShooter:
|
61
|
+
"""Create an instance of ShotInfoShooter from a dict"""
|
62
|
+
if obj is None:
|
63
|
+
return None
|
64
|
+
|
65
|
+
if not isinstance(obj, dict):
|
66
|
+
return ShotInfoShooter.parse_obj(obj)
|
67
|
+
|
68
|
+
_obj = ShotInfoShooter.parse_obj({
|
69
|
+
"name": obj.get("name"),
|
70
|
+
"id": obj.get("id")
|
71
|
+
})
|
72
|
+
return _obj
|
73
|
+
|
74
|
+
|
cbbd/models/srs_info.py
CHANGED
@@ -5,7 +5,7 @@
|
|
5
5
|
|
6
6
|
This API is in limited Beta for Patreon subscribers. It may have bugs and is subject to changes. API keys can be acquired from the CollegeFootballData.com website.
|
7
7
|
|
8
|
-
The version of the OpenAPI document: 1.
|
8
|
+
The version of the OpenAPI document: 1.8.0
|
9
9
|
Contact: admin@collegefootballdata.com
|
10
10
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
11
11
|
|
cbbd/models/team_info.py
CHANGED
@@ -5,7 +5,7 @@
|
|
5
5
|
|
6
6
|
This API is in limited Beta for Patreon subscribers. It may have bugs and is subject to changes. API keys can be acquired from the CollegeFootballData.com website.
|
7
7
|
|
8
|
-
The version of the OpenAPI document: 1.
|
8
|
+
The version of the OpenAPI document: 1.8.0
|
9
9
|
Contact: admin@collegefootballdata.com
|
10
10
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
11
11
|
|
cbbd/models/team_roster.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.8.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.
|
8
|
+
The version of the OpenAPI document: 1.8.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.
|
8
|
+
The version of the OpenAPI document: 1.8.0
|
9
9
|
Contact: admin@collegefootballdata.com
|
10
10
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
11
11
|
|
cbbd/models/team_season_stats.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.8.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.
|
8
|
+
The version of the OpenAPI document: 1.8.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.
|
8
|
+
The version of the OpenAPI document: 1.8.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.
|
8
|
+
The version of the OpenAPI document: 1.8.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.
|
8
|
+
The version of the OpenAPI document: 1.8.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.
|
8
|
+
The version of the OpenAPI document: 1.8.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.
|
8
|
+
The version of the OpenAPI document: 1.8.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.
|
8
|
+
The version of the OpenAPI document: 1.8.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.
|
8
|
+
The version of the OpenAPI document: 1.8.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.
|
8
|
+
The version of the OpenAPI document: 1.8.0
|
9
9
|
Contact: admin@collegefootballdata.com
|
10
10
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
11
11
|
|
@@ -0,0 +1,58 @@
|
|
1
|
+
cbbd/__init__.py,sha256=gJgE66dVRqo8xoLAkxjjlo35fsaCuj1EhRbf-dLDXbA,3646
|
2
|
+
cbbd/api_client.py,sha256=JOlWXELBbtIqYu-FibC1Icxs-qr9LivLhaYfa0_tsog,29894
|
3
|
+
cbbd/api_response.py,sha256=uCehWdXXDnAO2HAHGKe0SgpQ_mJiGDbcu-BHDF3n_IM,852
|
4
|
+
cbbd/configuration.py,sha256=6YS6HDaDiLkNoddjy8COwpHNRW9CoXXeiOYKajXXvbA,14796
|
5
|
+
cbbd/exceptions.py,sha256=WrmvBNL_IlTfV2Jq51M4R4nGWN6CCQ0xdrLJHUXTiQk,5545
|
6
|
+
cbbd/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
7
|
+
cbbd/rest.py,sha256=0rYzUZsRH2dyM3zE4_-qUdQmuObeZGu_9blkMCHxq5s,14162
|
8
|
+
cbbd/api/__init__.py,sha256=eZkj51ZLdv2e_6U9bEPVhek2eV3QDX6xyLoDQKMaGF4,386
|
9
|
+
cbbd/api/conferences_api.py,sha256=puXkWpaY9_PJqoDlSrVBD2Kw_bxjL63jZ8radNjI5UI,13078
|
10
|
+
cbbd/api/games_api.py,sha256=UbtzO6uDpmZEvyR5IjTldZi3b3xRwIvshPhXxIpwxWk,41194
|
11
|
+
cbbd/api/lines_api.py,sha256=FE4UFg4xv5tijWFK6-cvJmh8ecWzh6_2TQ953yBr2co,15756
|
12
|
+
cbbd/api/plays_api.py,sha256=1CyrTpD4ayhh4-2XSLGHLuEcuU6xjpgSbpqqp_kaTtQ,35261
|
13
|
+
cbbd/api/ratings_api.py,sha256=ubsnsf8t2KIaCyFSow3US5U6M4SLerbDChDuLezmC5I,15678
|
14
|
+
cbbd/api/stats_api.py,sha256=1eci5vMJMuOgIEbg-g5E7zRHyYVw7DssiGJAR625lbI,20182
|
15
|
+
cbbd/api/teams_api.py,sha256=ZnC0bylXgyypNHDgnKN84AiLhljy4iHFuY83X6-gyEk,14207
|
16
|
+
cbbd/api/venues_api.py,sha256=EGMkqwfKNEtYtcelI2JuvFToxUjqvg2tT_50lG2xMRQ,6567
|
17
|
+
cbbd/models/__init__.py,sha256=TlgDINr8YPL3rRAMQLi9uWAXHjohVIsD9RgifZaDirY,2854
|
18
|
+
cbbd/models/adjusted_efficiency_info.py,sha256=yzNVIb1QfGu55t5ac3ILFz4Z0dMOSCsnXueECDuVWSc,2909
|
19
|
+
cbbd/models/conference_history.py,sha256=Zy48y78GnXlYy1wAxlvhT6wYcjQxxvCjoH_RIuP44cc,3083
|
20
|
+
cbbd/models/conference_history_teams_inner.py,sha256=7ddqAkrWB_Z6WTUkN1qcztgXAOet0KSSo7aMCTIcdww,3129
|
21
|
+
cbbd/models/conference_info.py,sha256=7j5koY-SqHQjjJlkcZELh859E-uZsV9JmJ6N7Babsm4,2436
|
22
|
+
cbbd/models/game_box_score_players.py,sha256=ulgcws1vheusBRENimlHkRuUe8lKjM8P31XJtw6CiqA,6355
|
23
|
+
cbbd/models/game_box_score_players_players_inner.py,sha256=9rGZunmn-gHJdh4aW96jvEec_hByuFFs3LzVaTPBQaA,12092
|
24
|
+
cbbd/models/game_box_score_team.py,sha256=qmwIFsKhRMwWiNawJsn1U_Q5LyL0AxYhCTn7jOC3Q_0,6386
|
25
|
+
cbbd/models/game_box_score_team_stats.py,sha256=mOazHK7TTZ1_ZKFjG5iEQnt_QN3obqlU7-XBn9t4df8,8686
|
26
|
+
cbbd/models/game_box_score_team_stats_points.py,sha256=HtzMGAqxCaR-4BnIeUi6xs0eY4ZOR8vPwwDHNIA-FKQ,4297
|
27
|
+
cbbd/models/game_info.py,sha256=WnTxneoOm7o3t3g2Kmmmmo7DSDATxLzy5NoCXrEsbL0,9985
|
28
|
+
cbbd/models/game_line_info.py,sha256=wtyeOUi30OQwb100_Q8shTSWf4QK1enWiHqiyKGAO6M,4370
|
29
|
+
cbbd/models/game_lines.py,sha256=IjfvcBrpz92gTZF6v06FVPY9Nxy242EHYIjmzWrtKYY,5076
|
30
|
+
cbbd/models/game_media_info.py,sha256=RO-31iwUrvCaTJ6TwMroKReKocbBIhD96YhJu_R-9Bs,5671
|
31
|
+
cbbd/models/game_media_info_broadcasts_inner.py,sha256=36FGukan_HqpaNyySdFZR2tSo1r0M-U8KgRkRmKjx1Q,2324
|
32
|
+
cbbd/models/game_status.py,sha256=Auy2pl8RL9HDuzKI94o0Lu4pLbAiXcNdHCbEWwiwehA,948
|
33
|
+
cbbd/models/line_provider_info.py,sha256=-OqWYYYRa0hwTvsU9KjVhSuCphGXQI6_-LgEXdL9KS4,2093
|
34
|
+
cbbd/models/play_info.py,sha256=ShnuRNAyM3YVoHKSasHwudnxSsRCm9aSgKjhCcGb6I8,9662
|
35
|
+
cbbd/models/play_info_participants_inner.py,sha256=NHTf6RFu-aj46MTlolUG1VMy-uXnZyv1ip27CdDAuH4,2165
|
36
|
+
cbbd/models/play_type_info.py,sha256=is-ho9POv1IdicPffl0GSxxrX4SxROKTc7OSk2VC2GM,2061
|
37
|
+
cbbd/models/player_season_stats.py,sha256=-iedXXQg8WERz9BXOn9hDtXiFQZwOXsDFKyalIApK_4,11712
|
38
|
+
cbbd/models/season_type.py,sha256=94EeBjuPy4oj2AE4-QNirhzoSxVcGahY38MeBBxZuj8,894
|
39
|
+
cbbd/models/shot_info.py,sha256=coGoe9ibu6m6XcY1Cmwo578Ck5MNI7o0BsiMiFlDaww,3710
|
40
|
+
cbbd/models/shot_info_shooter.py,sha256=RFvRKDObq7YzUzfTs_a_viefbMBH3FkC4RSoj4uaeaM,2085
|
41
|
+
cbbd/models/srs_info.py,sha256=6PvSRq46ZZKSrw9AkULDy8MKre7cYrwtF2N583Vhk6c,2394
|
42
|
+
cbbd/models/team_info.py,sha256=t4wtS5zljUwm_5n57wTu0l4uxcLgNCN5U8YMbG8A_dA,6665
|
43
|
+
cbbd/models/team_roster.py,sha256=2Q39Fz9PC-9QV7wuZme3AqG2eIdWz4urzNzMLGiFg10,3294
|
44
|
+
cbbd/models/team_roster_player.py,sha256=dA91In_prqb5rO2cSCYQWJrHdzYW8knCqG8L6-A3pVw,5353
|
45
|
+
cbbd/models/team_roster_player_hometown.py,sha256=NBzYepFn2ZvrgCwIEtwXtj-42-jTPQ_IyD69mJkpdpo,2906
|
46
|
+
cbbd/models/team_season_stats.py,sha256=M-4ZXPRMkMNsPKHUdU3F_n6xP_be_DlNu-O8WfPTAf0,4262
|
47
|
+
cbbd/models/team_season_unit_stats.py,sha256=UKpZ6-9925oyH_hqtAh5VzRsNP9oWgOR5_tYrZpo5sc,8286
|
48
|
+
cbbd/models/team_season_unit_stats_field_goals.py,sha256=22uIdDliyKHRWHWy7XkaUT197sUVNdRFyp7dAogh6SE,3026
|
49
|
+
cbbd/models/team_season_unit_stats_fouls.py,sha256=RY0BPzHTr8c5lxXNhgS9H8KWDCH2dl6kp99MS5CFjfc,3034
|
50
|
+
cbbd/models/team_season_unit_stats_four_factors.py,sha256=EA0kWQZgyGKMg2dszYIvw0Q5FAlVTf_AG4TrSkLbwL0,3883
|
51
|
+
cbbd/models/team_season_unit_stats_points.py,sha256=zENuvWvUyyT0257x2wqaNBd1J9kSqGmdIFxEFFL-bCU,3498
|
52
|
+
cbbd/models/team_season_unit_stats_rebounds.py,sha256=rPn8ZF-3mveFXo857E7y5OcYnVImyBppjXfd9oBSRdc,3066
|
53
|
+
cbbd/models/team_season_unit_stats_turnovers.py,sha256=psGfFFEoyU4T9mqOLMJaiHaKTzllDm0o5TFBetKL16s,2763
|
54
|
+
cbbd/models/venue_info.py,sha256=cQ24RQSe4ELwWtdHuRLINtQMmWYDyRp8j8j5nT0wAMA,3331
|
55
|
+
cbbd-1.8.0.dist-info/METADATA,sha256=n_zL1iM3na27TWOE8z3Z6ycMsKSi6mYAs4ynQQdcr9M,763
|
56
|
+
cbbd-1.8.0.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
57
|
+
cbbd-1.8.0.dist-info/top_level.txt,sha256=d8efSEMxRPpV_X-2jtQvf9S-EI4HoFQpCEOZCjDxT24,5
|
58
|
+
cbbd-1.8.0.dist-info/RECORD,,
|
cbbd-1.7.3.dist-info/RECORD
DELETED
@@ -1,56 +0,0 @@
|
|
1
|
-
cbbd/__init__.py,sha256=yehK2UDIe5gQWoPsumnB-K05HHPVqD8oURJQuOU0KtQ,3545
|
2
|
-
cbbd/api_client.py,sha256=qYV5eZ9ambto_zlZozCJbrM2ZlLwEILBzqlIYIqT1X4,29894
|
3
|
-
cbbd/api_response.py,sha256=uCehWdXXDnAO2HAHGKe0SgpQ_mJiGDbcu-BHDF3n_IM,852
|
4
|
-
cbbd/configuration.py,sha256=4igugEGrDM7wTBYaCIW4EqmBdpHymmtBvK_5WuSG2LM,14796
|
5
|
-
cbbd/exceptions.py,sha256=9VJ3iEqABc0RpUIY3PEAfLgH-0CXsZIJAAVhjx4hz7Y,5545
|
6
|
-
cbbd/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
7
|
-
cbbd/rest.py,sha256=88qOrpqa3eTB0lTidKPj7E7h3tDymJR_aMF6tL8SyLQ,14162
|
8
|
-
cbbd/api/__init__.py,sha256=eZkj51ZLdv2e_6U9bEPVhek2eV3QDX6xyLoDQKMaGF4,386
|
9
|
-
cbbd/api/conferences_api.py,sha256=6X0KxvhQP1yuG35nR398v3o2D3sK0XoEnK4FEiouYBI,13078
|
10
|
-
cbbd/api/games_api.py,sha256=c9SBgMD2Lsohh5Kh_GEPGfmXqZlcQNh5grrPLUkYgXk,41194
|
11
|
-
cbbd/api/lines_api.py,sha256=OgDMoNnkaTnzZGShJKInERKkqcLdsj9Zc1sSsM5MZlQ,15756
|
12
|
-
cbbd/api/plays_api.py,sha256=FtPLQXykPoIUl5X9sEdVY3KGfGceH7cnol73jvEGzLs,32183
|
13
|
-
cbbd/api/ratings_api.py,sha256=8HazzwikUJOWHawRkN9sTBSBAAJLAXUrFFbrKurSx7w,15678
|
14
|
-
cbbd/api/stats_api.py,sha256=BxkYTHX2DUQpXZ1tJEEkXoaeTWXJq3ZbUQije6dqf_s,20182
|
15
|
-
cbbd/api/teams_api.py,sha256=7HNUwW8nj6ClaA0HTtrmsXCBQHzstjKORrPF4u5pjwg,14207
|
16
|
-
cbbd/api/venues_api.py,sha256=39bXWwsYsvWAfaLfRZspYMVbHfTl522gWV-WdBIDRhE,6567
|
17
|
-
cbbd/models/__init__.py,sha256=wh8i_r3sYmVfXnuAOCs8lBhppK9EeEFbA3dUqcRDLoo,2753
|
18
|
-
cbbd/models/adjusted_efficiency_info.py,sha256=UrUixjYlOeBGLp1RLskZuq995IsX17dw5OYtSgF0mKs,2909
|
19
|
-
cbbd/models/conference_history.py,sha256=Z3UnR66-wFJVD-n8XBNQJgnaNXdidjy8MA4FCjIaapM,3083
|
20
|
-
cbbd/models/conference_history_teams_inner.py,sha256=EtT1R48jBZXMYoZ3k4iLdDkRZ86iB_kRllUuRE1SVw4,3129
|
21
|
-
cbbd/models/conference_info.py,sha256=_yuHTyvP4HyglXapLsTzaOuakcCRxdmmMJGIigm0tjc,2436
|
22
|
-
cbbd/models/game_box_score_players.py,sha256=gV3A4ejaZ-Cj5W5Sb4hDnew2XY20d7hDal1KcIhbX8s,6355
|
23
|
-
cbbd/models/game_box_score_players_players_inner.py,sha256=Qa0Neyat5n-4rNg-T3_R2jr2NDhXkj4jqF5ypBbCyAg,12092
|
24
|
-
cbbd/models/game_box_score_team.py,sha256=CgzBsD0thIug6wxIVEPJsFTGhTl-0p4_X_MPYWYrhbI,6386
|
25
|
-
cbbd/models/game_box_score_team_stats.py,sha256=dBV_rkYkJMp9KXRgLIt6bEh8KsoocZx-wl2T9ygeGZ4,8686
|
26
|
-
cbbd/models/game_box_score_team_stats_points.py,sha256=_wUjlPY3PqoKgrN_yRxw1QpNg8ilpZ3uIHLg-xkCna0,4297
|
27
|
-
cbbd/models/game_info.py,sha256=XNj_eGTPLp-SbsmQH1lDl7GPzjlcT4iO7xDwcQr2ojo,9985
|
28
|
-
cbbd/models/game_line_info.py,sha256=PSSPwIzeKJYd2PW-xRf4j_b_foPKZ0j4AzDhMhWhIcE,4370
|
29
|
-
cbbd/models/game_lines.py,sha256=YDZgKZ9D_OF-n3OJ2Z-9AJ_Allq6tA9Q7VbCWOK3Dvg,5076
|
30
|
-
cbbd/models/game_media_info.py,sha256=1bipcKJ16eFiI8GIm9ooMR403DG9uwYiDFVRXhPSd3g,5671
|
31
|
-
cbbd/models/game_media_info_broadcasts_inner.py,sha256=rAFJAPhzIGZqOe-TwmzshoYtDR_HbbJPDboALPJBSnc,2324
|
32
|
-
cbbd/models/game_status.py,sha256=H_0RL4QZgpihJcqRR10M5UzdivShu3QN7eqPRMOcWSo,948
|
33
|
-
cbbd/models/line_provider_info.py,sha256=3riXHhqWwooKFKSAacQnjjjt_qM-yQp-yKtN6XSaxdk,2093
|
34
|
-
cbbd/models/play_info.py,sha256=qTInE1asukP0YsSP5ClwK6nUEKthvW6pqEG-xBOyPBo,9037
|
35
|
-
cbbd/models/play_info_participants_inner.py,sha256=yY3hANqbZBFSFPHdgb9tvQ0Ceqt-rodjdoIB4ggfx3s,2165
|
36
|
-
cbbd/models/play_type_info.py,sha256=ndjIYKvUlXOXBWtn62yaop2hRBJIf3GQx4Da9Obit08,2061
|
37
|
-
cbbd/models/player_season_stats.py,sha256=PJQybr7mA19VfVCNbKS6_zWmiRQlyHxHJifolPxOBrM,11712
|
38
|
-
cbbd/models/season_type.py,sha256=1yG3dBue1gOeFAiPFLPEtHkIXldBiu9lHwzSkDFFgQQ,894
|
39
|
-
cbbd/models/srs_info.py,sha256=02XorpCZqI-B6-JbgYhPZOfyfdXFpdzJv2_5SpsUNB8,2394
|
40
|
-
cbbd/models/team_info.py,sha256=1oltI7g4CB9gCwqT1cuYv9SQjVZPvKdzI-HqSEJtq8Y,6665
|
41
|
-
cbbd/models/team_roster.py,sha256=v9M5tm6ilSPJkqd9TolZHcr6u3AzhlKzxsY-ynlviIE,3294
|
42
|
-
cbbd/models/team_roster_player.py,sha256=UmZ__nLVwzzM_U1b0wNq80ze8G8K7VIM06t-bi_2vLo,5353
|
43
|
-
cbbd/models/team_roster_player_hometown.py,sha256=TqH8BHoQy8ZFMjyphfNviLvYz1bWxuznmwGGNkoKQZI,2906
|
44
|
-
cbbd/models/team_season_stats.py,sha256=HN46tewLjmv8U06BvNeSuiFj-1bP4oxZKghmtoWhK-I,4262
|
45
|
-
cbbd/models/team_season_unit_stats.py,sha256=idlFwHETUanJF1lU7EoqK9wkHslGNB52Czjz80TL2qw,8286
|
46
|
-
cbbd/models/team_season_unit_stats_field_goals.py,sha256=ELYUpG7eTZSD-bCtSyZHfwgla6sOObi0bkRoShwnvWk,3026
|
47
|
-
cbbd/models/team_season_unit_stats_fouls.py,sha256=5ioT4MFyqvUcFqvuQvbpDH15MtL-KwainEUgQSadpik,3034
|
48
|
-
cbbd/models/team_season_unit_stats_four_factors.py,sha256=xWA4gbc1SNx7o9KMsNJbr5Z3CARpjcu8BEWp6boRtWM,3883
|
49
|
-
cbbd/models/team_season_unit_stats_points.py,sha256=ZnLfBkNOfG-O2zXCdvwaBt1g0OB0jtYcxHItfDx9FW4,3498
|
50
|
-
cbbd/models/team_season_unit_stats_rebounds.py,sha256=Dps0xUzcl_KGx592LShOWnK6G3KbcR4xAgO58OEp2Gc,3066
|
51
|
-
cbbd/models/team_season_unit_stats_turnovers.py,sha256=RZ9f-kQf5ckuyO701uQWuUwyXlawtOSEMp8eUW5A-y8,2763
|
52
|
-
cbbd/models/venue_info.py,sha256=wKjUYSBCPsDb6WCRT49PbHGKjoNUIZ5gW2GxbZ7d7nU,3331
|
53
|
-
cbbd-1.7.3.dist-info/METADATA,sha256=QUtBO_iE8f8wQlmqtH9SKJ5n-pXC5PuZSLkFSEZjGZY,763
|
54
|
-
cbbd-1.7.3.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
55
|
-
cbbd-1.7.3.dist-info/top_level.txt,sha256=d8efSEMxRPpV_X-2jtQvf9S-EI4HoFQpCEOZCjDxT24,5
|
56
|
-
cbbd-1.7.3.dist-info/RECORD,,
|
File without changes
|
File without changes
|