cbbd 1.19.2__py3-none-any.whl → 1.20.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 +7 -2
- 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/lineups_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 +1 -1
- cbbd/api/stats_api.py +375 -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 +6 -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/lineup_stats.py +1 -1
- cbbd/models/lineup_unit_stats.py +1 -1
- cbbd/models/lineup_unit_stats_four_factors.py +1 -1
- cbbd/models/lineup_unit_stats_two_pointers.py +1 -1
- cbbd/models/play_info.py +1 -1
- cbbd/models/play_info_on_floor_inner.py +1 -1
- cbbd/models/play_info_participants_inner.py +1 -1
- cbbd/models/play_type_info.py +1 -1
- cbbd/models/player_season_shooting_stats.py +124 -0
- cbbd/models/player_season_stats.py +1 -1
- cbbd/models/player_season_stats_win_shares.py +1 -1
- cbbd/models/player_subsititution.py +1 -1
- cbbd/models/player_subsititution_sub_in.py +1 -1
- cbbd/models/poll_team_info.py +1 -1
- cbbd/models/recruit.py +1 -1
- cbbd/models/recruit_committed_to.py +1 -1
- cbbd/models/recruit_hometown.py +1 -1
- cbbd/models/season_shooting_stats.py +120 -0
- cbbd/models/season_shooting_stats_attempts_breakdown.py +80 -0
- cbbd/models/season_shooting_stats_dunks.py +80 -0
- cbbd/models/season_type.py +1 -1
- cbbd/models/shooting_stats.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/shot_type_breakdown.py +76 -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.19.2.dist-info → cbbd-1.20.0.dist-info}/METADATA +1 -1
- cbbd-1.20.0.dist-info/RECORD +85 -0
- cbbd-1.19.2.dist-info/RECORD +0 -80
- {cbbd-1.19.2.dist-info → cbbd-1.20.0.dist-info}/WHEEL +0 -0
- {cbbd-1.19.2.dist-info → cbbd-1.20.0.dist-info}/top_level.txt +0 -0
@@ -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.20.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
|
24
|
+
|
25
|
+
class SeasonShootingStatsAttemptsBreakdown(BaseModel):
|
26
|
+
"""
|
27
|
+
SeasonShootingStatsAttemptsBreakdown
|
28
|
+
"""
|
29
|
+
three_point_jumpers: Union[StrictFloat, StrictInt] = Field(default=..., alias="threePointJumpers")
|
30
|
+
two_point_jumpers: Union[StrictFloat, StrictInt] = Field(default=..., alias="twoPointJumpers")
|
31
|
+
tip_ins: Union[StrictFloat, StrictInt] = Field(default=..., alias="tipIns")
|
32
|
+
layups: Union[StrictFloat, StrictInt] = Field(...)
|
33
|
+
dunks: Union[StrictFloat, StrictInt] = Field(...)
|
34
|
+
__properties = ["threePointJumpers", "twoPointJumpers", "tipIns", "layups", "dunks"]
|
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) -> SeasonShootingStatsAttemptsBreakdown:
|
51
|
+
"""Create an instance of SeasonShootingStatsAttemptsBreakdown 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) -> SeasonShootingStatsAttemptsBreakdown:
|
64
|
+
"""Create an instance of SeasonShootingStatsAttemptsBreakdown from a dict"""
|
65
|
+
if obj is None:
|
66
|
+
return None
|
67
|
+
|
68
|
+
if not isinstance(obj, dict):
|
69
|
+
return SeasonShootingStatsAttemptsBreakdown.parse_obj(obj)
|
70
|
+
|
71
|
+
_obj = SeasonShootingStatsAttemptsBreakdown.parse_obj({
|
72
|
+
"three_point_jumpers": obj.get("threePointJumpers"),
|
73
|
+
"two_point_jumpers": obj.get("twoPointJumpers"),
|
74
|
+
"tip_ins": obj.get("tipIns"),
|
75
|
+
"layups": obj.get("layups"),
|
76
|
+
"dunks": obj.get("dunks")
|
77
|
+
})
|
78
|
+
return _obj
|
79
|
+
|
80
|
+
|
@@ -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.20.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
|
24
|
+
|
25
|
+
class SeasonShootingStatsDunks(BaseModel):
|
26
|
+
"""
|
27
|
+
SeasonShootingStatsDunks
|
28
|
+
"""
|
29
|
+
made: StrictInt = Field(...)
|
30
|
+
attempted: StrictInt = Field(...)
|
31
|
+
pct: Union[StrictFloat, StrictInt] = Field(...)
|
32
|
+
assisted_pct: Union[StrictFloat, StrictInt] = Field(default=..., alias="assistedPct")
|
33
|
+
assisted: StrictInt = Field(...)
|
34
|
+
__properties = ["made", "attempted", "pct", "assistedPct", "assisted"]
|
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) -> SeasonShootingStatsDunks:
|
51
|
+
"""Create an instance of SeasonShootingStatsDunks 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) -> SeasonShootingStatsDunks:
|
64
|
+
"""Create an instance of SeasonShootingStatsDunks from a dict"""
|
65
|
+
if obj is None:
|
66
|
+
return None
|
67
|
+
|
68
|
+
if not isinstance(obj, dict):
|
69
|
+
return SeasonShootingStatsDunks.parse_obj(obj)
|
70
|
+
|
71
|
+
_obj = SeasonShootingStatsDunks.parse_obj({
|
72
|
+
"made": obj.get("made"),
|
73
|
+
"attempted": obj.get("attempted"),
|
74
|
+
"pct": obj.get("pct"),
|
75
|
+
"assisted_pct": obj.get("assistedPct"),
|
76
|
+
"assisted": obj.get("assisted")
|
77
|
+
})
|
78
|
+
return _obj
|
79
|
+
|
80
|
+
|
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.20.0
|
9
9
|
Contact: admin@collegefootballdata.com
|
10
10
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
11
11
|
|
cbbd/models/shooting_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.20.0
|
9
9
|
Contact: admin@collegefootballdata.com
|
10
10
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
11
11
|
|
cbbd/models/shot_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.20.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.20.0
|
9
9
|
Contact: admin@collegefootballdata.com
|
10
10
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
11
11
|
|
cbbd/models/shot_info_shooter.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.20.0
|
9
9
|
Contact: admin@collegefootballdata.com
|
10
10
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
11
11
|
|
@@ -0,0 +1,76 @@
|
|
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.20.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
|
24
|
+
|
25
|
+
class ShotTypeBreakdown(BaseModel):
|
26
|
+
"""
|
27
|
+
ShotTypeBreakdown
|
28
|
+
"""
|
29
|
+
made: StrictInt = Field(...)
|
30
|
+
attempted: StrictInt = Field(...)
|
31
|
+
pct: Union[StrictFloat, StrictInt] = Field(...)
|
32
|
+
__properties = ["made", "attempted", "pct"]
|
33
|
+
|
34
|
+
class Config:
|
35
|
+
"""Pydantic configuration"""
|
36
|
+
allow_population_by_field_name = True
|
37
|
+
validate_assignment = True
|
38
|
+
|
39
|
+
def to_str(self) -> str:
|
40
|
+
"""Returns the string representation of the model using alias"""
|
41
|
+
return pprint.pformat(self.dict(by_alias=True))
|
42
|
+
|
43
|
+
def to_json(self) -> str:
|
44
|
+
"""Returns the JSON representation of the model using alias"""
|
45
|
+
return json.dumps(self.to_dict())
|
46
|
+
|
47
|
+
@classmethod
|
48
|
+
def from_json(cls, json_str: str) -> ShotTypeBreakdown:
|
49
|
+
"""Create an instance of ShotTypeBreakdown from a JSON string"""
|
50
|
+
return cls.from_dict(json.loads(json_str))
|
51
|
+
|
52
|
+
def to_dict(self):
|
53
|
+
"""Returns the dictionary representation of the model using alias"""
|
54
|
+
_dict = self.dict(by_alias=True,
|
55
|
+
exclude={
|
56
|
+
},
|
57
|
+
exclude_none=True)
|
58
|
+
return _dict
|
59
|
+
|
60
|
+
@classmethod
|
61
|
+
def from_dict(cls, obj: dict) -> ShotTypeBreakdown:
|
62
|
+
"""Create an instance of ShotTypeBreakdown from a dict"""
|
63
|
+
if obj is None:
|
64
|
+
return None
|
65
|
+
|
66
|
+
if not isinstance(obj, dict):
|
67
|
+
return ShotTypeBreakdown.parse_obj(obj)
|
68
|
+
|
69
|
+
_obj = ShotTypeBreakdown.parse_obj({
|
70
|
+
"made": obj.get("made"),
|
71
|
+
"attempted": obj.get("attempted"),
|
72
|
+
"pct": obj.get("pct")
|
73
|
+
})
|
74
|
+
return _obj
|
75
|
+
|
76
|
+
|
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.20.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.20.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.20.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.20.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.20.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.20.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.20.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.20.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.20.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.20.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.20.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.20.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.20.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.20.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.20.0
|
9
9
|
Contact: admin@collegefootballdata.com
|
10
10
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
11
11
|
|
@@ -0,0 +1,85 @@
|
|
1
|
+
cbbd/__init__.py,sha256=BpXWY2wet6sOfRz4JPFxspFEgndqOx7vw9A5OhrYjTs,5337
|
2
|
+
cbbd/api_client.py,sha256=gIQoB06DrtmelG9wKSurAVqk9-siH83ZKc6WKVIAL58,29903
|
3
|
+
cbbd/api_response.py,sha256=uCehWdXXDnAO2HAHGKe0SgpQ_mJiGDbcu-BHDF3n_IM,852
|
4
|
+
cbbd/configuration.py,sha256=V9ZaMGQ3CHt22BzvBNE3s0UKzd7WL3uz7mxfE1olz-0,14799
|
5
|
+
cbbd/exceptions.py,sha256=7v9KWFCWydaVXsFlje9FVQ0jiWAYKPXZZ0nM0g_wLGY,5546
|
6
|
+
cbbd/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
7
|
+
cbbd/rest.py,sha256=5Vht_mL7mUAyaKZ3uaOct_J8GGrnDJlFaZ9_rweoA_E,14163
|
8
|
+
cbbd/api/__init__.py,sha256=BG9pqmB2-l6ByYSh1FXjVHzeEqmvxQgr_MWR1z2NKrg,566
|
9
|
+
cbbd/api/conferences_api.py,sha256=gsQK8xASmGK2TgsKZ1_Uk9Lnxa5piTbO24tFUosekeQ,13079
|
10
|
+
cbbd/api/draft_api.py,sha256=9L5Ms2NBTG3IBiz2NEM2pMWsWjFAszkHLj8g6UjEZ9U,20209
|
11
|
+
cbbd/api/games_api.py,sha256=UzeOhZ33p-a-Xe-zxCw1kbY6HsXM7H3uwBhZciUYRf8,43823
|
12
|
+
cbbd/api/lines_api.py,sha256=wsz6Q_Eh6EvlkrlT0F4pa_BM6yB-YSRp2eMWUZarDuE,15757
|
13
|
+
cbbd/api/lineups_api.py,sha256=duxf0Fa-pgSTSVwk01EFvCjpmEG1Pkr_oMZXIY_Lz3g,15748
|
14
|
+
cbbd/api/plays_api.py,sha256=oMjSWSK_8MFUfig4AwtDFCTuBZNDU1EhhjZUbff5imI,62483
|
15
|
+
cbbd/api/rankings_api.py,sha256=sxSXi9qU_P6oYYOQcAIE_nJ6ew0Dw1Q94LTAOornoGg,10005
|
16
|
+
cbbd/api/ratings_api.py,sha256=lCVHPFUeYEZSteFbULHoRTEJvM31Ow3XrKYo7HEuHBY,15679
|
17
|
+
cbbd/api/recruiting_api.py,sha256=lw4fld4tDPyiQ7QF9lbAP9t5BTzahDNkTGSePKTwF3g,8858
|
18
|
+
cbbd/api/stats_api.py,sha256=QDRcquRBOzgV_RGhKY-U4zunz5mj843O07MguwHQiso,40172
|
19
|
+
cbbd/api/teams_api.py,sha256=AkOwSKdBx61bqAvCOq_owY2Ajf89yOtwiO9EVxOpjng,14208
|
20
|
+
cbbd/api/venues_api.py,sha256=UeQOEKXNkwg2yhlkJwbPjR-X2cvftAtjxFHMDGJIv1g,6568
|
21
|
+
cbbd/models/__init__.py,sha256=_mhTNy9S2v5vLnB6wv4-vkJUwcii_eoz22hFQpMEJZ8,4364
|
22
|
+
cbbd/models/adjusted_efficiency_info.py,sha256=PRL7gdPMo-ThhtQa3kLDKhpfKO3DZtj_bMDKUD5jIK8,3370
|
23
|
+
cbbd/models/adjusted_efficiency_info_rankings.py,sha256=f4uFAJhSe_6Cg9NDhY_yk350xD1zSgnANP8GgmxffR4,2398
|
24
|
+
cbbd/models/conference_history.py,sha256=DVcQS1ylkLLUbbExVDo7vhHo0vvZxPSS7hMqNdQyzf4,3084
|
25
|
+
cbbd/models/conference_history_teams_inner.py,sha256=AxC9xU4I2v4F3QlSGRkPVERBfGXMeNMWaFrJ1aedSAs,3130
|
26
|
+
cbbd/models/conference_info.py,sha256=RR91MAQ86OJXvXXMwrHN6Zss2mZ6YX769NYz2KcEtBs,2437
|
27
|
+
cbbd/models/draft_pick.py,sha256=1Tqmq41DITrP-ci9rnWCSNlRcdXBl_9o_yOfdQYoeqc,6572
|
28
|
+
cbbd/models/draft_position.py,sha256=G2ONKeSG69e36_-JcPIO4Zz5ySYU_zQDGTUz6twxVBk,2099
|
29
|
+
cbbd/models/draft_team.py,sha256=wre5ndyHo9G5RkBK2D0fEwbKeFYmFI21HQe2oRl3dKk,2558
|
30
|
+
cbbd/models/game_box_score_players.py,sha256=O4_o92Hl-ZB7sSv7iC-f40gf7G7rkp9cNl5JN0mYCJI,7528
|
31
|
+
cbbd/models/game_box_score_players_players_inner.py,sha256=GeeAwm8246Ul1q39HZRgDoulHbzXdDmIquAd5UFWg44,12093
|
32
|
+
cbbd/models/game_box_score_team.py,sha256=K7RrD5oN20cVue50xtn-AJ71oePsC7bKXB1pZzh293Q,7699
|
33
|
+
cbbd/models/game_box_score_team_stats.py,sha256=2j0k4I-44LWou1VIhqS4uqw5_Fzs-Kn0RCelvf9Poi8,8687
|
34
|
+
cbbd/models/game_box_score_team_stats_points.py,sha256=D9iehbhu1uQEc4wpvuSmfGrUyfdQCuCECH4UD2BwCXk,4298
|
35
|
+
cbbd/models/game_info.py,sha256=4RMmTUJFsvx1EohoO-JnGrT11xhuRhZRg00LEbtlufQ,11364
|
36
|
+
cbbd/models/game_line_info.py,sha256=-S8UflLlUZrZVcUPpTpmp-yKxt9sijM8H-63tXXv3Mg,4371
|
37
|
+
cbbd/models/game_lines.py,sha256=Y1nJTmghFHiYXK5J-IwdO-QDL8d4sTFtT6cSkPJHQck,5077
|
38
|
+
cbbd/models/game_media_info.py,sha256=D39sZ37dJ9dDhpSMLRPDBWIdiCc7XX6hDARNPYVIeaE,6003
|
39
|
+
cbbd/models/game_media_info_broadcasts_inner.py,sha256=5x7J01q-7JaroiSSuxSEyGAZlnCgeW_acmns5ATWtfk,2325
|
40
|
+
cbbd/models/game_status.py,sha256=uJuTbV-ZrpYg4Egs9yfc6m2JWaIrSBnU_5xgITIBJDs,949
|
41
|
+
cbbd/models/line_provider_info.py,sha256=dywUpo5Zph2cvtRZoynvaVp1u73Ltk11ZHmCvUkfY48,2094
|
42
|
+
cbbd/models/lineup_stats.py,sha256=ZAmroKGFExydASB1O0kkaHSakyq7EJBAWT9CRv3qDjs,4575
|
43
|
+
cbbd/models/lineup_unit_stats.py,sha256=8_uIRWJAM6pXs1ZkcrzKerF9UNrtLZclyOTH1aqYl7A,5271
|
44
|
+
cbbd/models/lineup_unit_stats_four_factors.py,sha256=StNOUtJ7NeSWWG1lg6PApxWXlQISu83zkoW-AEcFz3E,2798
|
45
|
+
cbbd/models/lineup_unit_stats_two_pointers.py,sha256=0m5WyogWTbKoNwGFMEpPYBuEwlJfdLJo2RLJYTLks_s,3680
|
46
|
+
cbbd/models/play_info.py,sha256=l0KcqXlL3ZKH5RuK0AfnFQ0epUTl969EVYpWO4GkB-A,11374
|
47
|
+
cbbd/models/play_info_on_floor_inner.py,sha256=NhW-0-Db0W5W2cIAgZlS-rYh0patd5A_BMq5eQDcIzI,2204
|
48
|
+
cbbd/models/play_info_participants_inner.py,sha256=9Fq13wgh_eW1M26bg0e_yKjrgYl4lAFganTcp7KazBA,2166
|
49
|
+
cbbd/models/play_type_info.py,sha256=kPgw874LntMuhkaZKnyAwwlgjWOv5_QmWgxInOLVAug,2062
|
50
|
+
cbbd/models/player_season_shooting_stats.py,sha256=haGzzCE5XXIwXqXCQRdbcaGuBaP2YcwQpL-5waJRrgA,5959
|
51
|
+
cbbd/models/player_season_stats.py,sha256=UnIjRJnZ2FrVotN7_nYayu9JLEZxJDgzO7-uMObSQzg,12542
|
52
|
+
cbbd/models/player_season_stats_win_shares.py,sha256=uSfHvl1IN0Kmrny-clQcRZEzUXeup-YBgNtYkbWw37c,3443
|
53
|
+
cbbd/models/player_subsititution.py,sha256=bv77dAeIbCc3yEi5_-fcLq4EN8gCMy-6Sw3vKeG_DSQ,4786
|
54
|
+
cbbd/models/player_subsititution_sub_in.py,sha256=cbyCIuedqIxPwt3nOKNCvvHzruU4RPBQjvtUw_bInlc,2531
|
55
|
+
cbbd/models/poll_team_info.py,sha256=fDHINSXCwWC7hogrQ23174eONtMeqFEcU_7A_DnFEc4,4422
|
56
|
+
cbbd/models/recruit.py,sha256=AG6f8xIp0gb4OiBrVzEcZDXuzEcjaBRcRRsH0iZRyTo,6394
|
57
|
+
cbbd/models/recruit_committed_to.py,sha256=DXYMrUxnvJLpUnx-RatmT0TCi-pt4b9ah7WsPmCwX8I,2870
|
58
|
+
cbbd/models/recruit_hometown.py,sha256=9vren_YiZ0JWrB7wz_OLFHgM2H2_i7065NJrEp8ARFA,3908
|
59
|
+
cbbd/models/season_shooting_stats.py,sha256=LzPq1fIKm73UFpqGZCXn0PTseB1ELqoq2OBQXeYrK8g,5647
|
60
|
+
cbbd/models/season_shooting_stats_attempts_breakdown.py,sha256=INOprBZjngaAzvjMCtdJ2XJg-yHwAZyUt6IjWUZG6ws,2840
|
61
|
+
cbbd/models/season_shooting_stats_dunks.py,sha256=CMI2kzj2wW72CT1TI_v8DkEB7SJuOD2PpyHKwXpIlu4,2557
|
62
|
+
cbbd/models/season_type.py,sha256=aA1mYllK_HX3IgPrl5x01J4OXHxocpKF6fJIDeEUpoM,895
|
63
|
+
cbbd/models/shooting_stats.py,sha256=usi2G4O8gzvLUByECaiaCs95q9uae-ftvAee64IIVTc,2218
|
64
|
+
cbbd/models/shot_info.py,sha256=Dh73v5KQqAxJUF6xpnibXzcIGsynjjnv_rsx2KQXEBQ,3638
|
65
|
+
cbbd/models/shot_info_location.py,sha256=J-u5GAHvC0iUYQxeLNq8DvuswCWaOr-QYwvmt4TtyGw,2540
|
66
|
+
cbbd/models/shot_info_shooter.py,sha256=j73-Aynjobq-BcEO3_7pK8wtlkvKcQNBHK6wRpaNNKE,2515
|
67
|
+
cbbd/models/shot_type_breakdown.py,sha256=jKLvpfiscrBKQ75vdI1Ak1X8MVz8rjvncanGoMIWLrA,2250
|
68
|
+
cbbd/models/srs_info.py,sha256=BZ06Bqwu5MladdHMRJw7NkWu_4GZq4t38luCtkXir5Y,2395
|
69
|
+
cbbd/models/team_info.py,sha256=0CBG-5VpppqIn2vbuOf3EHX-fL3UrPe4UhEk2vAOmHc,6666
|
70
|
+
cbbd/models/team_roster.py,sha256=1VvQ0tDwPYwGo7g5ukgTVNCmSYAlof66pTdCbuogr6s,3295
|
71
|
+
cbbd/models/team_roster_player.py,sha256=sw8D515JtcQA9pgSvbtr_pCTMKppQ0xUqZeNBOKLOvg,5354
|
72
|
+
cbbd/models/team_roster_player_hometown.py,sha256=k_d-G5zvVSo9OR5eif7hWh5dJ_tJzLMnRR11Y360KQQ,3980
|
73
|
+
cbbd/models/team_season_stats.py,sha256=gOaYLHTPVCO8uwEyXSI_sO2kCVguGoXzUdsGZ_WzNbw,4607
|
74
|
+
cbbd/models/team_season_unit_stats.py,sha256=vmfgzuWGc0-z4QMGhRFTZs8sJ-GvzWrEYaOFUokGgqk,8287
|
75
|
+
cbbd/models/team_season_unit_stats_field_goals.py,sha256=22gcCKYcUe2oyLXAZ2dYs-emOdcVDs7XheHL0JxtEYk,3027
|
76
|
+
cbbd/models/team_season_unit_stats_fouls.py,sha256=pw1gEsb4aoRWieatT2NXII7vzYNmN-PrejSdTqttPH4,3035
|
77
|
+
cbbd/models/team_season_unit_stats_four_factors.py,sha256=Rp3rVLQufeb6_52XNHgv8LcrehkkE40u-BvvFBqrW-Y,3884
|
78
|
+
cbbd/models/team_season_unit_stats_points.py,sha256=d56z0PUs0G-db6ZoUJK9yfUa4pjPiZ6PJbsCBV4Yl28,3499
|
79
|
+
cbbd/models/team_season_unit_stats_rebounds.py,sha256=7fpwCcU0YUEpga18U-A-yRQEdD7a-J7b-GVjeU6Rr0k,3067
|
80
|
+
cbbd/models/team_season_unit_stats_turnovers.py,sha256=W1TtadNYFS4LoFT61Y14sBcv_Bn-LnJqzL6zQQJhsxY,2764
|
81
|
+
cbbd/models/venue_info.py,sha256=lj5L7A8phmNH1WObY0v2QkQ1ZHs3PYfD8kM5k_bfv5c,3332
|
82
|
+
cbbd-1.20.0.dist-info/METADATA,sha256=oSRzCfzIgis4cGjqeUHs7Ze8a0ehvITq-YznZ3LlrsY,764
|
83
|
+
cbbd-1.20.0.dist-info/WHEEL,sha256=52BFRY2Up02UkjOa29eZOS2VxUrpPORXg1pkohGGUS8,91
|
84
|
+
cbbd-1.20.0.dist-info/top_level.txt,sha256=d8efSEMxRPpV_X-2jtQvf9S-EI4HoFQpCEOZCjDxT24,5
|
85
|
+
cbbd-1.20.0.dist-info/RECORD,,
|
cbbd-1.19.2.dist-info/RECORD
DELETED
@@ -1,80 +0,0 @@
|
|
1
|
-
cbbd/__init__.py,sha256=AC2wbaW7L_bhfCrXhk3dQR7Qvd7cnvthQtk8D-8qwRY,4951
|
2
|
-
cbbd/api_client.py,sha256=-Yij7sFCo2ICAQ68uRj7RRmHVI0RrLxy16Q_HfY_C8o,29903
|
3
|
-
cbbd/api_response.py,sha256=uCehWdXXDnAO2HAHGKe0SgpQ_mJiGDbcu-BHDF3n_IM,852
|
4
|
-
cbbd/configuration.py,sha256=buwiwneWoxQOBQdfK_nzILbYC6K5_2O63qxvzB2zfyA,14799
|
5
|
-
cbbd/exceptions.py,sha256=2TxKsanEGyJaMY16KmwiMqBGmPWY_Fk_Z6rGAsPCljU,5546
|
6
|
-
cbbd/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
7
|
-
cbbd/rest.py,sha256=JLhMnSC1R5S-PjC8bvAaAAjN1P02dJJNd5KlZuK3f0g,14163
|
8
|
-
cbbd/api/__init__.py,sha256=BG9pqmB2-l6ByYSh1FXjVHzeEqmvxQgr_MWR1z2NKrg,566
|
9
|
-
cbbd/api/conferences_api.py,sha256=r5sxbt5rz61PpXpkgxB1iNw8D_ejbYyeqHotJJaq0Gg,13079
|
10
|
-
cbbd/api/draft_api.py,sha256=eOWmp27Bdggsi3_vOzTLvZevsV-VBJ-CnwMUh86MuwA,20209
|
11
|
-
cbbd/api/games_api.py,sha256=MzE6WJXv10-qKbDFzS7NWvdVDhZNDhWEgKnnznav9QQ,43823
|
12
|
-
cbbd/api/lines_api.py,sha256=-e6UvCvpP3AmMi14ArAme-3vwLfi6PrhOb8YQNeM22I,15757
|
13
|
-
cbbd/api/lineups_api.py,sha256=Kjx4Kxovd3rW9DgBIGALAR9xVc5AB1FAdICFcw9QWxw,15748
|
14
|
-
cbbd/api/plays_api.py,sha256=S_5nYiNYW8ivf8X1pzsFKmIQe-j3OyKGoi7n6vxO1jk,62483
|
15
|
-
cbbd/api/rankings_api.py,sha256=LsycDIOb155wWhZ153jPcu1Cno0CV_j28uo4ltvfRpo,10005
|
16
|
-
cbbd/api/ratings_api.py,sha256=-YOq-cqESxjQh-0_aObsnl7PvlhrFh79oAzyLBIghN0,15679
|
17
|
-
cbbd/api/recruiting_api.py,sha256=nItSoG_ODu1KB639ZDmGc9gEMlwjmYkR22s3JFdmtpg,8858
|
18
|
-
cbbd/api/stats_api.py,sha256=9l4SkDmdA_etfnubnMwDA-cjzmbsZ1vWhDsZ5llkoS8,20183
|
19
|
-
cbbd/api/teams_api.py,sha256=Y2fYq9yJTOrdPJGJsae2ThSIfli23VHNLI9O4dlpMFA,14208
|
20
|
-
cbbd/api/venues_api.py,sha256=eR0lMY0zYzh4xrOWz3pr6AnZEd5omLbdnHHYWOkp3pE,6568
|
21
|
-
cbbd/models/__init__.py,sha256=jONtuKfLhPKAQmG4ADYydTC5pruoMQzQLjP-WtlIOyU,3978
|
22
|
-
cbbd/models/adjusted_efficiency_info.py,sha256=zs34rqAFcnIV1eKSlAeG_YWH25luSzshuZQ4ihTzU4c,3370
|
23
|
-
cbbd/models/adjusted_efficiency_info_rankings.py,sha256=dleQUJA-7VqrKj2g9QVhjjBMHBIibuoBfHKvjWh3Y4A,2398
|
24
|
-
cbbd/models/conference_history.py,sha256=BK4LNvxpLwzMsHrcGbNY-n3q2dYtoXzSfEdfagXKrCI,3084
|
25
|
-
cbbd/models/conference_history_teams_inner.py,sha256=6xijrx1Xb1SUeeyDuXmr3pLh_kd5tsOSdKQ0l_Otcu8,3130
|
26
|
-
cbbd/models/conference_info.py,sha256=Q-2GUVbYhOoElSpmR-ZZBN0bdV-bCPaJ_kxtFvcLvoo,2437
|
27
|
-
cbbd/models/draft_pick.py,sha256=BEL_iXup9eetSu6JvrksQhmTMWtcPUUUZ8fJFELSPaU,6572
|
28
|
-
cbbd/models/draft_position.py,sha256=BJI9Ij9CGS68m_ucaZHc1EQ0QcLL4J5DAjXEPyUJKnE,2099
|
29
|
-
cbbd/models/draft_team.py,sha256=MQAYyhu71HO5jqFDO6i78Y-pk6X6d7MKpf6MBWszOrQ,2558
|
30
|
-
cbbd/models/game_box_score_players.py,sha256=MHDu2VUm2S5x9FTVBc7XSo565oPKvpw5G9Ee4QL2scI,7528
|
31
|
-
cbbd/models/game_box_score_players_players_inner.py,sha256=LyfYvZ3CxqHpisdVgF8BAUljyW_fLrO2IV5aG7_Kb1Y,12093
|
32
|
-
cbbd/models/game_box_score_team.py,sha256=wkrd4UtgvayOJzsbERyBeNAJkTrKo6-LAs-WpCDqc-U,7699
|
33
|
-
cbbd/models/game_box_score_team_stats.py,sha256=Lix1BQws69sS5dabZhsyEy10F5aZ5mqfl1naNlkSMeY,8687
|
34
|
-
cbbd/models/game_box_score_team_stats_points.py,sha256=eFhIDIZYYxq0szV3o3Z0-OipOgXfUNcrY41UDvsmzfw,4298
|
35
|
-
cbbd/models/game_info.py,sha256=cw1HpEkzYvbH2JF7cBrdEK0UZlFQ1aLOA4ETE3bfnB8,11364
|
36
|
-
cbbd/models/game_line_info.py,sha256=idQD-GP40FQwvN1dqpwN8g-1EHCjyTHYZD2qkgqltZg,4371
|
37
|
-
cbbd/models/game_lines.py,sha256=09Ps8R-AaA4eACKvffZGfFw52X3sve_xFOb2JYb2eNI,5077
|
38
|
-
cbbd/models/game_media_info.py,sha256=7fqtwLuIcwjjRZTWLnJLJZwUWoyDZY3R9X74KJFTsCc,6003
|
39
|
-
cbbd/models/game_media_info_broadcasts_inner.py,sha256=UJdjcLfZtDxfnyDhcfbb4V_5qxY5otc_wsM4vUEjp3g,2325
|
40
|
-
cbbd/models/game_status.py,sha256=WuQiq5d5IWJOsFuHjBa6Ne7wF29DvtY7dr6UnW_0_LQ,949
|
41
|
-
cbbd/models/line_provider_info.py,sha256=eh3xKT2dzoTNYnri7-WyPYlja2BooNXcSpYNtvI9gfA,2094
|
42
|
-
cbbd/models/lineup_stats.py,sha256=v_SobnaPRDhOV9G1FKyIqF8cvzKoJ27y9WUxgEM54nA,4575
|
43
|
-
cbbd/models/lineup_unit_stats.py,sha256=7utGXeVea5Ul3Vbj8ja04s0Hh45U6g6Xb0wcxAlxIO4,5271
|
44
|
-
cbbd/models/lineup_unit_stats_four_factors.py,sha256=oOFYvwDxCLISW46LSem_NZLFaHf-H4nNOlGBQAQOsOk,2798
|
45
|
-
cbbd/models/lineup_unit_stats_two_pointers.py,sha256=KGxVMkfTm-b2B-fwNOcUA0OKSTlSvtsWsT30UFtbLKw,3680
|
46
|
-
cbbd/models/play_info.py,sha256=qiD_BwCtYi8Cpc2jL2fErA53mkBmzG-5CrZTw-qMCYc,11374
|
47
|
-
cbbd/models/play_info_on_floor_inner.py,sha256=PufAPpJ3WMtMJPmxz9sc_EPeNlODKfqKD0aOxZMn0yA,2204
|
48
|
-
cbbd/models/play_info_participants_inner.py,sha256=CU28nJRqEGByCos0uKRHy1B1_UuiH1jo_nKxYkN3XT0,2166
|
49
|
-
cbbd/models/play_type_info.py,sha256=JubgEKstddghbp3d-HNKew-tvNNwBqVBg3i8tAogoYE,2062
|
50
|
-
cbbd/models/player_season_stats.py,sha256=AaXDq4xzGvx0X5fJaWiYj7rpZOZPYP3JAXKlFIsXPYQ,12542
|
51
|
-
cbbd/models/player_season_stats_win_shares.py,sha256=GNn-kqP77spaSYkn13U4m9-SfwTMEAPfnyuf-mof_Yo,3443
|
52
|
-
cbbd/models/player_subsititution.py,sha256=v2a2qX8bi5Oap5tH6o3-sdhcGrYigJJlMxyVqxjGMCI,4786
|
53
|
-
cbbd/models/player_subsititution_sub_in.py,sha256=HZrbVIXX72wInfURn_tnVjm1ZpUAEAxHeuVMNl-NlLg,2531
|
54
|
-
cbbd/models/poll_team_info.py,sha256=-AmNmZLZaQAFBthUt_6gYrd5vXkcuWc_ZQfiOIxnCIE,4422
|
55
|
-
cbbd/models/recruit.py,sha256=xDkyDQXAYCtxR8NG28SIId056rkVBHtcg3afwK-nK9A,6394
|
56
|
-
cbbd/models/recruit_committed_to.py,sha256=uyZOqEufbaTKyFNVyJbh-pmBJpv3-KqcMgh2iGisNIg,2870
|
57
|
-
cbbd/models/recruit_hometown.py,sha256=QnTYPLcOaItbE2bcrjrE4sTdMXAVUlRWWo1U6yBJpYA,3908
|
58
|
-
cbbd/models/season_type.py,sha256=sG9RcLJaUTRnpb063HfeG-cb50qNXbktzNAEMwDncKg,895
|
59
|
-
cbbd/models/shooting_stats.py,sha256=NdD4qjp22OwzTjTmbWss2j3l55GFF-mJyDFW7PMhH1U,2218
|
60
|
-
cbbd/models/shot_info.py,sha256=12FU9hSk6qtaJTA0RrZl7dVuwkKtv9SEkOvO7BqBev4,3638
|
61
|
-
cbbd/models/shot_info_location.py,sha256=Tlu58AS_TMkla5UfLJB5PFwSgpjTBBtPn_yF0Hu_q8U,2540
|
62
|
-
cbbd/models/shot_info_shooter.py,sha256=FwpPdJI0HvIg9bei20d3-OclEbDADAdWayP5Qet0qoU,2515
|
63
|
-
cbbd/models/srs_info.py,sha256=5kb2MbfyTnOlPPn8_lGXmf0e5ZcEba7I4cM19aQ356A,2395
|
64
|
-
cbbd/models/team_info.py,sha256=z5YuegeaA7TgDMonFtikzayaYZgmzmVtry9inxC8oBk,6666
|
65
|
-
cbbd/models/team_roster.py,sha256=WkZP6ebMtDox3BtjbferTedUQfFtuvyHYyJpuC81DQE,3295
|
66
|
-
cbbd/models/team_roster_player.py,sha256=H1Xhzr8Fip-pinNQewKvYlVlhC_0malUaFWkbwxpVgM,5354
|
67
|
-
cbbd/models/team_roster_player_hometown.py,sha256=RBF2M6agfdYAcVAbomHrNbapBy8r1YdcOu1FRZ_4TZA,3980
|
68
|
-
cbbd/models/team_season_stats.py,sha256=AMYHDBXnDq1U3h_ES6PvNvRQTVM7u9pfvbPj8moDSUY,4607
|
69
|
-
cbbd/models/team_season_unit_stats.py,sha256=Fdqkx9mDveeSjbXWZs5oYNmDKuN2hnFiTecq9WX0cuE,8287
|
70
|
-
cbbd/models/team_season_unit_stats_field_goals.py,sha256=pSsyXsl80-LpvFAlwRxa04xgHqEwCrE7vsh2Oui4tNg,3027
|
71
|
-
cbbd/models/team_season_unit_stats_fouls.py,sha256=yDaBoFT0DY3VquBKeyytHvBDFaqcDrxnsnlqjFsXGFY,3035
|
72
|
-
cbbd/models/team_season_unit_stats_four_factors.py,sha256=jo_tYB0nB_5KZTMrIConHsSBTC0jmJe1bG5AKCIS-80,3884
|
73
|
-
cbbd/models/team_season_unit_stats_points.py,sha256=PWLrMMex-riVeeAv0sIY8O1l30Ox5t_SYhxZFqaGtP8,3499
|
74
|
-
cbbd/models/team_season_unit_stats_rebounds.py,sha256=YdS4TxMaRVOFTneAnRfVEdaOoWQb-UaaxEat8dfRLtE,3067
|
75
|
-
cbbd/models/team_season_unit_stats_turnovers.py,sha256=DklQqsZif26d0a_G166GFHSD2MQqjMNSQAAjs681-nQ,2764
|
76
|
-
cbbd/models/venue_info.py,sha256=JHv5Edl_M8P05N8Q7ParJSFF7jDG6cbEjS78Ez2cu-o,3332
|
77
|
-
cbbd-1.19.2.dist-info/METADATA,sha256=jk2Fqiuo2WGoXhTy486DWe0bBnb8VfVokLF8q0LUqK0,764
|
78
|
-
cbbd-1.19.2.dist-info/WHEEL,sha256=52BFRY2Up02UkjOa29eZOS2VxUrpPORXg1pkohGGUS8,91
|
79
|
-
cbbd-1.19.2.dist-info/top_level.txt,sha256=d8efSEMxRPpV_X-2jtQvf9S-EI4HoFQpCEOZCjDxT24,5
|
80
|
-
cbbd-1.19.2.dist-info/RECORD,,
|
File without changes
|
File without changes
|