cbbd 1.11.1__py3-none-any.whl → 1.12.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- cbbd/__init__.py +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 +1 -1
- cbbd/api/rankings_api.py +1 -1
- 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 +9 -3
- cbbd/models/adjusted_efficiency_info_rankings.py +76 -0
- 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 +1 -1
- cbbd/models/play_info_participants_inner.py +1 -1
- cbbd/models/play_type_info.py +1 -1
- cbbd/models/player_season_stats.py +1 -1
- cbbd/models/player_season_stats_win_shares.py +1 -1
- cbbd/models/poll_team_info.py +1 -1
- cbbd/models/season_type.py +1 -1
- cbbd/models/shot_info.py +14 -3
- cbbd/models/shot_info_location.py +74 -0
- cbbd/models/shot_info_shooter.py +1 -1
- cbbd/models/srs_info.py +1 -1
- cbbd/models/team_info.py +1 -1
- cbbd/models/team_roster.py +1 -1
- cbbd/models/team_roster_player.py +1 -1
- cbbd/models/team_roster_player_hometown.py +1 -1
- cbbd/models/team_season_stats.py +6 -2
- 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.11.1.dist-info → cbbd-1.12.1.dist-info}/METADATA +1 -1
- cbbd-1.12.1.dist-info/RECORD +63 -0
- cbbd-1.11.1.dist-info/RECORD +0 -61
- {cbbd-1.11.1.dist-info → cbbd-1.12.1.dist-info}/WHEEL +0 -0
- {cbbd-1.11.1.dist-info → cbbd-1.12.1.dist-info}/top_level.txt +0 -0
cbbd/__init__.py
CHANGED
@@ -7,7 +7,7 @@
|
|
7
7
|
|
8
8
|
This API is in limited Beta for Patreon subscribers. It may have bugs and is subject to changes. API keys can be acquired from the CollegeFootballData.com website.
|
9
9
|
|
10
|
-
The version of the OpenAPI document: 1.
|
10
|
+
The version of the OpenAPI document: 1.12.1
|
11
11
|
Contact: admin@collegefootballdata.com
|
12
12
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
13
13
|
|
@@ -15,7 +15,7 @@
|
|
15
15
|
""" # noqa: E501
|
16
16
|
|
17
17
|
|
18
|
-
__version__ = "1.
|
18
|
+
__version__ = "1.12.1"
|
19
19
|
|
20
20
|
# import apis into sdk package
|
21
21
|
from cbbd.api.conferences_api import ConferencesApi
|
@@ -41,6 +41,7 @@ from cbbd.exceptions import ApiException
|
|
41
41
|
|
42
42
|
# import models into sdk package
|
43
43
|
from cbbd.models.adjusted_efficiency_info import AdjustedEfficiencyInfo
|
44
|
+
from cbbd.models.adjusted_efficiency_info_rankings import AdjustedEfficiencyInfoRankings
|
44
45
|
from cbbd.models.conference_history import ConferenceHistory
|
45
46
|
from cbbd.models.conference_history_teams_inner import ConferenceHistoryTeamsInner
|
46
47
|
from cbbd.models.conference_info import ConferenceInfo
|
@@ -64,6 +65,7 @@ from cbbd.models.player_season_stats_win_shares import PlayerSeasonStatsWinShare
|
|
64
65
|
from cbbd.models.poll_team_info import PollTeamInfo
|
65
66
|
from cbbd.models.season_type import SeasonType
|
66
67
|
from cbbd.models.shot_info import ShotInfo
|
68
|
+
from cbbd.models.shot_info_location import ShotInfoLocation
|
67
69
|
from cbbd.models.shot_info_shooter import ShotInfoShooter
|
68
70
|
from cbbd.models.srs_info import SrsInfo
|
69
71
|
from cbbd.models.team_info import TeamInfo
|
cbbd/api/conferences_api.py
CHANGED
@@ -5,7 +5,7 @@
|
|
5
5
|
|
6
6
|
This API is in limited Beta for Patreon subscribers. It may have bugs and is subject to changes. API keys can be acquired from the CollegeFootballData.com website.
|
7
7
|
|
8
|
-
The version of the OpenAPI document: 1.
|
8
|
+
The version of the OpenAPI document: 1.12.1
|
9
9
|
Contact: admin@collegefootballdata.com
|
10
10
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
11
11
|
|
cbbd/api/games_api.py
CHANGED
@@ -5,7 +5,7 @@
|
|
5
5
|
|
6
6
|
This API is in limited Beta for Patreon subscribers. It may have bugs and is subject to changes. API keys can be acquired from the CollegeFootballData.com website.
|
7
7
|
|
8
|
-
The version of the OpenAPI document: 1.
|
8
|
+
The version of the OpenAPI document: 1.12.1
|
9
9
|
Contact: admin@collegefootballdata.com
|
10
10
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
11
11
|
|
cbbd/api/lines_api.py
CHANGED
@@ -5,7 +5,7 @@
|
|
5
5
|
|
6
6
|
This API is in limited Beta for Patreon subscribers. It may have bugs and is subject to changes. API keys can be acquired from the CollegeFootballData.com website.
|
7
7
|
|
8
|
-
The version of the OpenAPI document: 1.
|
8
|
+
The version of the OpenAPI document: 1.12.1
|
9
9
|
Contact: admin@collegefootballdata.com
|
10
10
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
11
11
|
|
cbbd/api/plays_api.py
CHANGED
@@ -5,7 +5,7 @@
|
|
5
5
|
|
6
6
|
This API is in limited Beta for Patreon subscribers. It may have bugs and is subject to changes. API keys can be acquired from the CollegeFootballData.com website.
|
7
7
|
|
8
|
-
The version of the OpenAPI document: 1.
|
8
|
+
The version of the OpenAPI document: 1.12.1
|
9
9
|
Contact: admin@collegefootballdata.com
|
10
10
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
11
11
|
|
cbbd/api/rankings_api.py
CHANGED
@@ -5,7 +5,7 @@
|
|
5
5
|
|
6
6
|
This API is in limited Beta for Patreon subscribers. It may have bugs and is subject to changes. API keys can be acquired from the CollegeFootballData.com website.
|
7
7
|
|
8
|
-
The version of the OpenAPI document: 1.
|
8
|
+
The version of the OpenAPI document: 1.12.1
|
9
9
|
Contact: admin@collegefootballdata.com
|
10
10
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
11
11
|
|
cbbd/api/ratings_api.py
CHANGED
@@ -5,7 +5,7 @@
|
|
5
5
|
|
6
6
|
This API is in limited Beta for Patreon subscribers. It may have bugs and is subject to changes. API keys can be acquired from the CollegeFootballData.com website.
|
7
7
|
|
8
|
-
The version of the OpenAPI document: 1.
|
8
|
+
The version of the OpenAPI document: 1.12.1
|
9
9
|
Contact: admin@collegefootballdata.com
|
10
10
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
11
11
|
|
cbbd/api/stats_api.py
CHANGED
@@ -5,7 +5,7 @@
|
|
5
5
|
|
6
6
|
This API is in limited Beta for Patreon subscribers. It may have bugs and is subject to changes. API keys can be acquired from the CollegeFootballData.com website.
|
7
7
|
|
8
|
-
The version of the OpenAPI document: 1.
|
8
|
+
The version of the OpenAPI document: 1.12.1
|
9
9
|
Contact: admin@collegefootballdata.com
|
10
10
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
11
11
|
|
cbbd/api/teams_api.py
CHANGED
@@ -5,7 +5,7 @@
|
|
5
5
|
|
6
6
|
This API is in limited Beta for Patreon subscribers. It may have bugs and is subject to changes. API keys can be acquired from the CollegeFootballData.com website.
|
7
7
|
|
8
|
-
The version of the OpenAPI document: 1.
|
8
|
+
The version of the OpenAPI document: 1.12.1
|
9
9
|
Contact: admin@collegefootballdata.com
|
10
10
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
11
11
|
|
cbbd/api/venues_api.py
CHANGED
@@ -5,7 +5,7 @@
|
|
5
5
|
|
6
6
|
This API is in limited Beta for Patreon subscribers. It may have bugs and is subject to changes. API keys can be acquired from the CollegeFootballData.com website.
|
7
7
|
|
8
|
-
The version of the OpenAPI document: 1.
|
8
|
+
The version of the OpenAPI document: 1.12.1
|
9
9
|
Contact: admin@collegefootballdata.com
|
10
10
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
11
11
|
|
cbbd/api_client.py
CHANGED
@@ -5,7 +5,7 @@
|
|
5
5
|
|
6
6
|
This API is in limited Beta for Patreon subscribers. It may have bugs and is subject to changes. API keys can be acquired from the CollegeFootballData.com website.
|
7
7
|
|
8
|
-
The version of the OpenAPI document: 1.
|
8
|
+
The version of the OpenAPI document: 1.12.1
|
9
9
|
Contact: admin@collegefootballdata.com
|
10
10
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
11
11
|
|
@@ -78,7 +78,7 @@ class ApiClient:
|
|
78
78
|
self.default_headers[header_name] = header_value
|
79
79
|
self.cookie = cookie
|
80
80
|
# Set default User-Agent.
|
81
|
-
self.user_agent = 'OpenAPI-Generator/1.
|
81
|
+
self.user_agent = 'OpenAPI-Generator/1.12.1/python'
|
82
82
|
self.client_side_validation = configuration.client_side_validation
|
83
83
|
|
84
84
|
def __enter__(self):
|
cbbd/configuration.py
CHANGED
@@ -5,7 +5,7 @@
|
|
5
5
|
|
6
6
|
This API is in limited Beta for Patreon subscribers. It may have bugs and is subject to changes. API keys can be acquired from the CollegeFootballData.com website.
|
7
7
|
|
8
|
-
The version of the OpenAPI document: 1.
|
8
|
+
The version of the OpenAPI document: 1.12.1
|
9
9
|
Contact: admin@collegefootballdata.com
|
10
10
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
11
11
|
|
@@ -376,8 +376,8 @@ class Configuration:
|
|
376
376
|
return "Python SDK Debug Report:\n"\
|
377
377
|
"OS: {env}\n"\
|
378
378
|
"Python Version: {pyversion}\n"\
|
379
|
-
"Version of the API: 1.
|
380
|
-
"SDK Package Version: 1.
|
379
|
+
"Version of the API: 1.12.1\n"\
|
380
|
+
"SDK Package Version: 1.12.1".\
|
381
381
|
format(env=sys.platform, pyversion=sys.version)
|
382
382
|
|
383
383
|
def get_host_settings(self):
|
cbbd/exceptions.py
CHANGED
@@ -5,7 +5,7 @@
|
|
5
5
|
|
6
6
|
This API is in limited Beta for Patreon subscribers. It may have bugs and is subject to changes. API keys can be acquired from the CollegeFootballData.com website.
|
7
7
|
|
8
|
-
The version of the OpenAPI document: 1.
|
8
|
+
The version of the OpenAPI document: 1.12.1
|
9
9
|
Contact: admin@collegefootballdata.com
|
10
10
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
11
11
|
|
cbbd/models/__init__.py
CHANGED
@@ -6,7 +6,7 @@
|
|
6
6
|
|
7
7
|
This API is in limited Beta for Patreon subscribers. It may have bugs and is subject to changes. API keys can be acquired from the CollegeFootballData.com website.
|
8
8
|
|
9
|
-
The version of the OpenAPI document: 1.
|
9
|
+
The version of the OpenAPI document: 1.12.1
|
10
10
|
Contact: admin@collegefootballdata.com
|
11
11
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
12
12
|
|
@@ -16,6 +16,7 @@
|
|
16
16
|
|
17
17
|
# import models into model package
|
18
18
|
from cbbd.models.adjusted_efficiency_info import AdjustedEfficiencyInfo
|
19
|
+
from cbbd.models.adjusted_efficiency_info_rankings import AdjustedEfficiencyInfoRankings
|
19
20
|
from cbbd.models.conference_history import ConferenceHistory
|
20
21
|
from cbbd.models.conference_history_teams_inner import ConferenceHistoryTeamsInner
|
21
22
|
from cbbd.models.conference_info import ConferenceInfo
|
@@ -39,6 +40,7 @@ from cbbd.models.player_season_stats_win_shares import PlayerSeasonStatsWinShare
|
|
39
40
|
from cbbd.models.poll_team_info import PollTeamInfo
|
40
41
|
from cbbd.models.season_type import SeasonType
|
41
42
|
from cbbd.models.shot_info import ShotInfo
|
43
|
+
from cbbd.models.shot_info_location import ShotInfoLocation
|
42
44
|
from cbbd.models.shot_info_shooter import ShotInfoShooter
|
43
45
|
from cbbd.models.srs_info import SrsInfo
|
44
46
|
from cbbd.models.team_info import TeamInfo
|
@@ -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.12.1
|
9
9
|
Contact: admin@collegefootballdata.com
|
10
10
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
11
11
|
|
@@ -21,6 +21,7 @@ import json
|
|
21
21
|
|
22
22
|
from typing import Union
|
23
23
|
from pydantic import BaseModel, Field, StrictFloat, StrictInt, StrictStr
|
24
|
+
from cbbd.models.adjusted_efficiency_info_rankings import AdjustedEfficiencyInfoRankings
|
24
25
|
|
25
26
|
class AdjustedEfficiencyInfo(BaseModel):
|
26
27
|
"""
|
@@ -33,7 +34,8 @@ class AdjustedEfficiencyInfo(BaseModel):
|
|
33
34
|
offensive_rating: Union[StrictFloat, StrictInt] = Field(default=..., alias="offensiveRating")
|
34
35
|
defensive_rating: Union[StrictFloat, StrictInt] = Field(default=..., alias="defensiveRating")
|
35
36
|
net_rating: Union[StrictFloat, StrictInt] = Field(default=..., alias="netRating")
|
36
|
-
|
37
|
+
rankings: AdjustedEfficiencyInfoRankings = Field(...)
|
38
|
+
__properties = ["season", "teamId", "team", "conference", "offensiveRating", "defensiveRating", "netRating", "rankings"]
|
37
39
|
|
38
40
|
class Config:
|
39
41
|
"""Pydantic configuration"""
|
@@ -59,6 +61,9 @@ class AdjustedEfficiencyInfo(BaseModel):
|
|
59
61
|
exclude={
|
60
62
|
},
|
61
63
|
exclude_none=True)
|
64
|
+
# override the default output from pydantic by calling `to_dict()` of rankings
|
65
|
+
if self.rankings:
|
66
|
+
_dict['rankings'] = self.rankings.to_dict()
|
62
67
|
return _dict
|
63
68
|
|
64
69
|
@classmethod
|
@@ -77,7 +82,8 @@ class AdjustedEfficiencyInfo(BaseModel):
|
|
77
82
|
"conference": obj.get("conference"),
|
78
83
|
"offensive_rating": obj.get("offensiveRating"),
|
79
84
|
"defensive_rating": obj.get("defensiveRating"),
|
80
|
-
"net_rating": obj.get("netRating")
|
85
|
+
"net_rating": obj.get("netRating"),
|
86
|
+
"rankings": AdjustedEfficiencyInfoRankings.from_dict(obj.get("rankings")) if obj.get("rankings") is not None else None
|
81
87
|
})
|
82
88
|
return _obj
|
83
89
|
|
@@ -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.12.1
|
9
|
+
Contact: admin@collegefootballdata.com
|
10
|
+
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
11
|
+
|
12
|
+
Do not edit the class manually.
|
13
|
+
""" # noqa: E501
|
14
|
+
|
15
|
+
|
16
|
+
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 AdjustedEfficiencyInfoRankings(BaseModel):
|
26
|
+
"""
|
27
|
+
AdjustedEfficiencyInfoRankings
|
28
|
+
"""
|
29
|
+
net: Union[StrictFloat, StrictInt] = Field(...)
|
30
|
+
defense: Union[StrictFloat, StrictInt] = Field(...)
|
31
|
+
offense: Union[StrictFloat, StrictInt] = Field(...)
|
32
|
+
__properties = ["net", "defense", "offense"]
|
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) -> AdjustedEfficiencyInfoRankings:
|
49
|
+
"""Create an instance of AdjustedEfficiencyInfoRankings 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) -> AdjustedEfficiencyInfoRankings:
|
62
|
+
"""Create an instance of AdjustedEfficiencyInfoRankings from a dict"""
|
63
|
+
if obj is None:
|
64
|
+
return None
|
65
|
+
|
66
|
+
if not isinstance(obj, dict):
|
67
|
+
return AdjustedEfficiencyInfoRankings.parse_obj(obj)
|
68
|
+
|
69
|
+
_obj = AdjustedEfficiencyInfoRankings.parse_obj({
|
70
|
+
"net": obj.get("net"),
|
71
|
+
"defense": obj.get("defense"),
|
72
|
+
"offense": obj.get("offense")
|
73
|
+
})
|
74
|
+
return _obj
|
75
|
+
|
76
|
+
|
@@ -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.12.1
|
9
9
|
Contact: admin@collegefootballdata.com
|
10
10
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
11
11
|
|
@@ -5,7 +5,7 @@
|
|
5
5
|
|
6
6
|
This API is in limited Beta for Patreon subscribers. It may have bugs and is subject to changes. API keys can be acquired from the CollegeFootballData.com website.
|
7
7
|
|
8
|
-
The version of the OpenAPI document: 1.
|
8
|
+
The version of the OpenAPI document: 1.12.1
|
9
9
|
Contact: admin@collegefootballdata.com
|
10
10
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
11
11
|
|
cbbd/models/conference_info.py
CHANGED
@@ -5,7 +5,7 @@
|
|
5
5
|
|
6
6
|
This API is in limited Beta for Patreon subscribers. It may have bugs and is subject to changes. API keys can be acquired from the CollegeFootballData.com website.
|
7
7
|
|
8
|
-
The version of the OpenAPI document: 1.
|
8
|
+
The version of the OpenAPI document: 1.12.1
|
9
9
|
Contact: admin@collegefootballdata.com
|
10
10
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
11
11
|
|
@@ -5,7 +5,7 @@
|
|
5
5
|
|
6
6
|
This API is in limited Beta for Patreon subscribers. It may have bugs and is subject to changes. API keys can be acquired from the CollegeFootballData.com website.
|
7
7
|
|
8
|
-
The version of the OpenAPI document: 1.
|
8
|
+
The version of the OpenAPI document: 1.12.1
|
9
9
|
Contact: admin@collegefootballdata.com
|
10
10
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
11
11
|
|
@@ -5,7 +5,7 @@
|
|
5
5
|
|
6
6
|
This API is in limited Beta for Patreon subscribers. It may have bugs and is subject to changes. API keys can be acquired from the CollegeFootballData.com website.
|
7
7
|
|
8
|
-
The version of the OpenAPI document: 1.
|
8
|
+
The version of the OpenAPI document: 1.12.1
|
9
9
|
Contact: admin@collegefootballdata.com
|
10
10
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
11
11
|
|
@@ -5,7 +5,7 @@
|
|
5
5
|
|
6
6
|
This API is in limited Beta for Patreon subscribers. It may have bugs and is subject to changes. API keys can be acquired from the CollegeFootballData.com website.
|
7
7
|
|
8
|
-
The version of the OpenAPI document: 1.
|
8
|
+
The version of the OpenAPI document: 1.12.1
|
9
9
|
Contact: admin@collegefootballdata.com
|
10
10
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
11
11
|
|
@@ -5,7 +5,7 @@
|
|
5
5
|
|
6
6
|
This API is in limited Beta for Patreon subscribers. It may have bugs and is subject to changes. API keys can be acquired from the CollegeFootballData.com website.
|
7
7
|
|
8
|
-
The version of the OpenAPI document: 1.
|
8
|
+
The version of the OpenAPI document: 1.12.1
|
9
9
|
Contact: admin@collegefootballdata.com
|
10
10
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
11
11
|
|
@@ -5,7 +5,7 @@
|
|
5
5
|
|
6
6
|
This API is in limited Beta for Patreon subscribers. It may have bugs and is subject to changes. API keys can be acquired from the CollegeFootballData.com website.
|
7
7
|
|
8
|
-
The version of the OpenAPI document: 1.
|
8
|
+
The version of the OpenAPI document: 1.12.1
|
9
9
|
Contact: admin@collegefootballdata.com
|
10
10
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
11
11
|
|
cbbd/models/game_info.py
CHANGED
@@ -5,7 +5,7 @@
|
|
5
5
|
|
6
6
|
This API is in limited Beta for Patreon subscribers. It may have bugs and is subject to changes. API keys can be acquired from the CollegeFootballData.com website.
|
7
7
|
|
8
|
-
The version of the OpenAPI document: 1.
|
8
|
+
The version of the OpenAPI document: 1.12.1
|
9
9
|
Contact: admin@collegefootballdata.com
|
10
10
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
11
11
|
|
cbbd/models/game_line_info.py
CHANGED
@@ -5,7 +5,7 @@
|
|
5
5
|
|
6
6
|
This API is in limited Beta for Patreon subscribers. It may have bugs and is subject to changes. API keys can be acquired from the CollegeFootballData.com website.
|
7
7
|
|
8
|
-
The version of the OpenAPI document: 1.
|
8
|
+
The version of the OpenAPI document: 1.12.1
|
9
9
|
Contact: admin@collegefootballdata.com
|
10
10
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
11
11
|
|
cbbd/models/game_lines.py
CHANGED
@@ -5,7 +5,7 @@
|
|
5
5
|
|
6
6
|
This API is in limited Beta for Patreon subscribers. It may have bugs and is subject to changes. API keys can be acquired from the CollegeFootballData.com website.
|
7
7
|
|
8
|
-
The version of the OpenAPI document: 1.
|
8
|
+
The version of the OpenAPI document: 1.12.1
|
9
9
|
Contact: admin@collegefootballdata.com
|
10
10
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
11
11
|
|
cbbd/models/game_media_info.py
CHANGED
@@ -5,7 +5,7 @@
|
|
5
5
|
|
6
6
|
This API is in limited Beta for Patreon subscribers. It may have bugs and is subject to changes. API keys can be acquired from the CollegeFootballData.com website.
|
7
7
|
|
8
|
-
The version of the OpenAPI document: 1.
|
8
|
+
The version of the OpenAPI document: 1.12.1
|
9
9
|
Contact: admin@collegefootballdata.com
|
10
10
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
11
11
|
|
@@ -5,7 +5,7 @@
|
|
5
5
|
|
6
6
|
This API is in limited Beta for Patreon subscribers. It may have bugs and is subject to changes. API keys can be acquired from the CollegeFootballData.com website.
|
7
7
|
|
8
|
-
The version of the OpenAPI document: 1.
|
8
|
+
The version of the OpenAPI document: 1.12.1
|
9
9
|
Contact: admin@collegefootballdata.com
|
10
10
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
11
11
|
|
cbbd/models/game_status.py
CHANGED
@@ -5,7 +5,7 @@
|
|
5
5
|
|
6
6
|
This API is in limited Beta for Patreon subscribers. It may have bugs and is subject to changes. API keys can be acquired from the CollegeFootballData.com website.
|
7
7
|
|
8
|
-
The version of the OpenAPI document: 1.
|
8
|
+
The version of the OpenAPI document: 1.12.1
|
9
9
|
Contact: admin@collegefootballdata.com
|
10
10
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
11
11
|
|
@@ -5,7 +5,7 @@
|
|
5
5
|
|
6
6
|
This API is in limited Beta for Patreon subscribers. It may have bugs and is subject to changes. API keys can be acquired from the CollegeFootballData.com website.
|
7
7
|
|
8
|
-
The version of the OpenAPI document: 1.
|
8
|
+
The version of the OpenAPI document: 1.12.1
|
9
9
|
Contact: admin@collegefootballdata.com
|
10
10
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
11
11
|
|
cbbd/models/play_info.py
CHANGED
@@ -5,7 +5,7 @@
|
|
5
5
|
|
6
6
|
This API is in limited Beta for Patreon subscribers. It may have bugs and is subject to changes. API keys can be acquired from the CollegeFootballData.com website.
|
7
7
|
|
8
|
-
The version of the OpenAPI document: 1.
|
8
|
+
The version of the OpenAPI document: 1.12.1
|
9
9
|
Contact: admin@collegefootballdata.com
|
10
10
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
11
11
|
|
@@ -5,7 +5,7 @@
|
|
5
5
|
|
6
6
|
This API is in limited Beta for Patreon subscribers. It may have bugs and is subject to changes. API keys can be acquired from the CollegeFootballData.com website.
|
7
7
|
|
8
|
-
The version of the OpenAPI document: 1.
|
8
|
+
The version of the OpenAPI document: 1.12.1
|
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.12.1
|
9
9
|
Contact: admin@collegefootballdata.com
|
10
10
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
11
11
|
|
@@ -5,7 +5,7 @@
|
|
5
5
|
|
6
6
|
This API is in limited Beta for Patreon subscribers. It may have bugs and is subject to changes. API keys can be acquired from the CollegeFootballData.com website.
|
7
7
|
|
8
|
-
The version of the OpenAPI document: 1.
|
8
|
+
The version of the OpenAPI document: 1.12.1
|
9
9
|
Contact: admin@collegefootballdata.com
|
10
10
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
11
11
|
|
@@ -5,7 +5,7 @@
|
|
5
5
|
|
6
6
|
This API is in limited Beta for Patreon subscribers. It may have bugs and is subject to changes. API keys can be acquired from the CollegeFootballData.com website.
|
7
7
|
|
8
|
-
The version of the OpenAPI document: 1.
|
8
|
+
The version of the OpenAPI document: 1.12.1
|
9
9
|
Contact: admin@collegefootballdata.com
|
10
10
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
11
11
|
|
cbbd/models/poll_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.12.1
|
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.12.1
|
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.12.1
|
9
9
|
Contact: admin@collegefootballdata.com
|
10
10
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
11
11
|
|
@@ -21,6 +21,7 @@ import json
|
|
21
21
|
|
22
22
|
from typing import Optional
|
23
23
|
from pydantic import BaseModel, Field, StrictBool, StrictStr, validator
|
24
|
+
from cbbd.models.shot_info_location import ShotInfoLocation
|
24
25
|
from cbbd.models.shot_info_shooter import ShotInfoShooter
|
25
26
|
|
26
27
|
class ShotInfo(BaseModel):
|
@@ -32,7 +33,8 @@ class ShotInfo(BaseModel):
|
|
32
33
|
range: StrictStr = Field(...)
|
33
34
|
assisted: StrictBool = Field(...)
|
34
35
|
assisted_by: Optional[ShotInfoShooter] = Field(default=..., alias="assistedBy")
|
35
|
-
|
36
|
+
location: Optional[ShotInfoLocation] = Field(...)
|
37
|
+
__properties = ["shooter", "made", "range", "assisted", "assistedBy", "location"]
|
36
38
|
|
37
39
|
@validator('range')
|
38
40
|
def range_validate_enum(cls, value):
|
@@ -71,6 +73,9 @@ class ShotInfo(BaseModel):
|
|
71
73
|
# override the default output from pydantic by calling `to_dict()` of assisted_by
|
72
74
|
if self.assisted_by:
|
73
75
|
_dict['assistedBy'] = self.assisted_by.to_dict()
|
76
|
+
# override the default output from pydantic by calling `to_dict()` of location
|
77
|
+
if self.location:
|
78
|
+
_dict['location'] = self.location.to_dict()
|
74
79
|
# set to None if shooter (nullable) is None
|
75
80
|
# and __fields_set__ contains the field
|
76
81
|
if self.shooter is None and "shooter" in self.__fields_set__:
|
@@ -81,6 +86,11 @@ class ShotInfo(BaseModel):
|
|
81
86
|
if self.assisted_by is None and "assisted_by" in self.__fields_set__:
|
82
87
|
_dict['assistedBy'] = None
|
83
88
|
|
89
|
+
# set to None if location (nullable) is None
|
90
|
+
# and __fields_set__ contains the field
|
91
|
+
if self.location is None and "location" in self.__fields_set__:
|
92
|
+
_dict['location'] = None
|
93
|
+
|
84
94
|
return _dict
|
85
95
|
|
86
96
|
@classmethod
|
@@ -97,7 +107,8 @@ class ShotInfo(BaseModel):
|
|
97
107
|
"made": obj.get("made"),
|
98
108
|
"range": obj.get("range"),
|
99
109
|
"assisted": obj.get("assisted"),
|
100
|
-
"assisted_by": ShotInfoShooter.from_dict(obj.get("assistedBy")) if obj.get("assistedBy") is not None else None
|
110
|
+
"assisted_by": ShotInfoShooter.from_dict(obj.get("assistedBy")) if obj.get("assistedBy") is not None else None,
|
111
|
+
"location": ShotInfoLocation.from_dict(obj.get("location")) if obj.get("location") is not None else None
|
101
112
|
})
|
102
113
|
return _obj
|
103
114
|
|
@@ -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.12.1
|
9
|
+
Contact: admin@collegefootballdata.com
|
10
|
+
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
11
|
+
|
12
|
+
Do not edit the class manually.
|
13
|
+
""" # noqa: E501
|
14
|
+
|
15
|
+
|
16
|
+
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 ShotInfoLocation(BaseModel):
|
26
|
+
"""
|
27
|
+
ShotInfoLocation
|
28
|
+
"""
|
29
|
+
y: Union[StrictFloat, StrictInt] = Field(...)
|
30
|
+
x: Union[StrictFloat, StrictInt] = Field(...)
|
31
|
+
__properties = ["y", "x"]
|
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) -> ShotInfoLocation:
|
48
|
+
"""Create an instance of ShotInfoLocation 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) -> ShotInfoLocation:
|
61
|
+
"""Create an instance of ShotInfoLocation from a dict"""
|
62
|
+
if obj is None:
|
63
|
+
return None
|
64
|
+
|
65
|
+
if not isinstance(obj, dict):
|
66
|
+
return ShotInfoLocation.parse_obj(obj)
|
67
|
+
|
68
|
+
_obj = ShotInfoLocation.parse_obj({
|
69
|
+
"y": obj.get("y"),
|
70
|
+
"x": obj.get("x")
|
71
|
+
})
|
72
|
+
return _obj
|
73
|
+
|
74
|
+
|
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.12.1
|
9
9
|
Contact: admin@collegefootballdata.com
|
10
10
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
11
11
|
|
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.12.1
|
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.12.1
|
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.12.1
|
9
9
|
Contact: admin@collegefootballdata.com
|
10
10
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
11
11
|
|
@@ -5,7 +5,7 @@
|
|
5
5
|
|
6
6
|
This API is in limited Beta for Patreon subscribers. It may have bugs and is subject to changes. API keys can be acquired from the CollegeFootballData.com website.
|
7
7
|
|
8
|
-
The version of the OpenAPI document: 1.
|
8
|
+
The version of the OpenAPI document: 1.12.1
|
9
9
|
Contact: admin@collegefootballdata.com
|
10
10
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
11
11
|
|
@@ -5,7 +5,7 @@
|
|
5
5
|
|
6
6
|
This API is in limited Beta for Patreon subscribers. It may have bugs and is subject to changes. API keys can be acquired from the CollegeFootballData.com website.
|
7
7
|
|
8
|
-
The version of the OpenAPI document: 1.
|
8
|
+
The version of the OpenAPI document: 1.12.1
|
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.12.1
|
9
9
|
Contact: admin@collegefootballdata.com
|
10
10
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
11
11
|
|
@@ -33,11 +33,13 @@ class TeamSeasonStats(BaseModel):
|
|
33
33
|
team: StrictStr = Field(...)
|
34
34
|
conference: Optional[StrictStr] = Field(...)
|
35
35
|
games: StrictInt = Field(...)
|
36
|
+
wins: Union[StrictFloat, StrictInt] = Field(...)
|
37
|
+
losses: Union[StrictFloat, StrictInt] = Field(...)
|
36
38
|
total_minutes: Optional[Union[StrictFloat, StrictInt]] = Field(default=..., alias="totalMinutes")
|
37
39
|
pace: Optional[Union[StrictFloat, StrictInt]] = Field(...)
|
38
40
|
offense: TeamSeasonUnitStats = Field(...)
|
39
41
|
defense: TeamSeasonUnitStats = Field(...)
|
40
|
-
__properties = ["season", "seasonLabel", "teamId", "team", "conference", "games", "totalMinutes", "pace", "offense", "defense"]
|
42
|
+
__properties = ["season", "seasonLabel", "teamId", "team", "conference", "games", "wins", "losses", "totalMinutes", "pace", "offense", "defense"]
|
41
43
|
|
42
44
|
class Config:
|
43
45
|
"""Pydantic configuration"""
|
@@ -102,6 +104,8 @@ class TeamSeasonStats(BaseModel):
|
|
102
104
|
"team": obj.get("team"),
|
103
105
|
"conference": obj.get("conference"),
|
104
106
|
"games": obj.get("games"),
|
107
|
+
"wins": obj.get("wins"),
|
108
|
+
"losses": obj.get("losses"),
|
105
109
|
"total_minutes": obj.get("totalMinutes"),
|
106
110
|
"pace": obj.get("pace"),
|
107
111
|
"offense": TeamSeasonUnitStats.from_dict(obj.get("offense")) if obj.get("offense") is not None else None,
|
@@ -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.12.1
|
9
9
|
Contact: admin@collegefootballdata.com
|
10
10
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
11
11
|
|
@@ -5,7 +5,7 @@
|
|
5
5
|
|
6
6
|
This API is in limited Beta for Patreon subscribers. It may have bugs and is subject to changes. API keys can be acquired from the CollegeFootballData.com website.
|
7
7
|
|
8
|
-
The version of the OpenAPI document: 1.
|
8
|
+
The version of the OpenAPI document: 1.12.1
|
9
9
|
Contact: admin@collegefootballdata.com
|
10
10
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
11
11
|
|
@@ -5,7 +5,7 @@
|
|
5
5
|
|
6
6
|
This API is in limited Beta for Patreon subscribers. It may have bugs and is subject to changes. API keys can be acquired from the CollegeFootballData.com website.
|
7
7
|
|
8
|
-
The version of the OpenAPI document: 1.
|
8
|
+
The version of the OpenAPI document: 1.12.1
|
9
9
|
Contact: admin@collegefootballdata.com
|
10
10
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
11
11
|
|
@@ -5,7 +5,7 @@
|
|
5
5
|
|
6
6
|
This API is in limited Beta for Patreon subscribers. It may have bugs and is subject to changes. API keys can be acquired from the CollegeFootballData.com website.
|
7
7
|
|
8
|
-
The version of the OpenAPI document: 1.
|
8
|
+
The version of the OpenAPI document: 1.12.1
|
9
9
|
Contact: admin@collegefootballdata.com
|
10
10
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
11
11
|
|
@@ -5,7 +5,7 @@
|
|
5
5
|
|
6
6
|
This API is in limited Beta for Patreon subscribers. It may have bugs and is subject to changes. API keys can be acquired from the CollegeFootballData.com website.
|
7
7
|
|
8
|
-
The version of the OpenAPI document: 1.
|
8
|
+
The version of the OpenAPI document: 1.12.1
|
9
9
|
Contact: admin@collegefootballdata.com
|
10
10
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
11
11
|
|
@@ -5,7 +5,7 @@
|
|
5
5
|
|
6
6
|
This API is in limited Beta for Patreon subscribers. It may have bugs and is subject to changes. API keys can be acquired from the CollegeFootballData.com website.
|
7
7
|
|
8
|
-
The version of the OpenAPI document: 1.
|
8
|
+
The version of the OpenAPI document: 1.12.1
|
9
9
|
Contact: admin@collegefootballdata.com
|
10
10
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
11
11
|
|
@@ -5,7 +5,7 @@
|
|
5
5
|
|
6
6
|
This API is in limited Beta for Patreon subscribers. It may have bugs and is subject to changes. API keys can be acquired from the CollegeFootballData.com website.
|
7
7
|
|
8
|
-
The version of the OpenAPI document: 1.
|
8
|
+
The version of the OpenAPI document: 1.12.1
|
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.12.1
|
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.12.1
|
9
9
|
Contact: admin@collegefootballdata.com
|
10
10
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
11
11
|
|
@@ -0,0 +1,63 @@
|
|
1
|
+
cbbd/__init__.py,sha256=jav4rMUNRAgz9bZQHZp9wF4hb7vhpUd_411oqozaJ-g,3977
|
2
|
+
cbbd/api_client.py,sha256=_QsRaml2LntYUyFQ6pu0YPIMs9i49DzbR42iksjG4IY,29896
|
3
|
+
cbbd/api_response.py,sha256=uCehWdXXDnAO2HAHGKe0SgpQ_mJiGDbcu-BHDF3n_IM,852
|
4
|
+
cbbd/configuration.py,sha256=Gd5AfYoJMTHZJY8BQrlU3SiUJpOerLn-0tJiRt_PMGY,14799
|
5
|
+
cbbd/exceptions.py,sha256=6Y4YXAjhVgcs4cKQlurb-dHNczPH8Kp8YsM3JkNJjNQ,5546
|
6
|
+
cbbd/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
7
|
+
cbbd/rest.py,sha256=QoIvYibkgnDfZ77VomihWyGNQx4JmbtZocXOFWn8wPk,14163
|
8
|
+
cbbd/api/__init__.py,sha256=U29aKlFG5cMzdwI6-aCdcGjclNGcvi0Me9-UNtja-6I,432
|
9
|
+
cbbd/api/conferences_api.py,sha256=aQs6x2KnOWSBS9VTwaKCqv7vvHUErbwxak77ZyjTyPU,13079
|
10
|
+
cbbd/api/games_api.py,sha256=XS4iilsUH-XZZurISiVhjCixR0S0DRFM8H1Dq9u5zrQ,41195
|
11
|
+
cbbd/api/lines_api.py,sha256=6uUZ1jCFjgiUxxdKAStUmfmMngcvpMLiRlZawlVjlRU,15757
|
12
|
+
cbbd/api/plays_api.py,sha256=vXFbpXrkTxjwByt8r2oRNciRR6zxHnLXcQxBEaG-bIU,35262
|
13
|
+
cbbd/api/rankings_api.py,sha256=Lm9i75rsnFlvdWl56PUT9AnW0N_GqOF9qJ6FKySQxoc,10005
|
14
|
+
cbbd/api/ratings_api.py,sha256=JVKP9RHCZzNNqIyisvOTBGiJsQiiymFsxAqg_kd9NOo,15679
|
15
|
+
cbbd/api/stats_api.py,sha256=agq5EtbbkLfUdQGHpyl0X65tljH3cb5SN-zf2Kbri8Q,20183
|
16
|
+
cbbd/api/teams_api.py,sha256=Z4Tt0zAyOIxdaVdwm5DXnPdQ-kNBb7h_4AjbIdgGGDU,14208
|
17
|
+
cbbd/api/venues_api.py,sha256=NMlDnHRd147FNt7SDOTT2ZuLQLH-k6oqzuQTMv4YF0s,6568
|
18
|
+
cbbd/models/__init__.py,sha256=ZL32X7--0Hcbb6ngfp1O4Z1mFcAXypYSEyZ6SUSKLbk,3138
|
19
|
+
cbbd/models/adjusted_efficiency_info.py,sha256=2SwOhdeJcbsZVIp_B47HKE8voml_r-XuBCeo_8kZDF8,3370
|
20
|
+
cbbd/models/adjusted_efficiency_info_rankings.py,sha256=z4sgN_IAO7Br6a0s_h9FwdElzg7AYh_HyGeeeRvhNfA,2398
|
21
|
+
cbbd/models/conference_history.py,sha256=707L29AYzXEV3EOamzM6ynYAV_DBMCHFgsH6zMabPpU,3084
|
22
|
+
cbbd/models/conference_history_teams_inner.py,sha256=ZkfGCjLC64eJ-YXT7UvtVWVcCb20BYoW2u2Ro6EfhLM,3130
|
23
|
+
cbbd/models/conference_info.py,sha256=NwkZTKtDOXud9z-EcydwsSjSp0iK1xSVcuVxrQs8pUg,2437
|
24
|
+
cbbd/models/game_box_score_players.py,sha256=W_QYSqs8KpRQY373rW5qbla99-z5i0wyePRA7g0yDtk,6356
|
25
|
+
cbbd/models/game_box_score_players_players_inner.py,sha256=LZrysqYlg9YWrs7KDh1VNzp70b9M5JQKR2szROgcmRw,12093
|
26
|
+
cbbd/models/game_box_score_team.py,sha256=84YZ7MyidGLBmj99m8gAK_8ogTQMT78vMb-yePFqrFc,6387
|
27
|
+
cbbd/models/game_box_score_team_stats.py,sha256=BbUyQ0LHszK21DWzwNKGi9tYySBgzPNsjoB9OYeYl9w,8687
|
28
|
+
cbbd/models/game_box_score_team_stats_points.py,sha256=p2_TBDj11NPD0x8-6Dq-7ln0SfJeY75jMi8-XPpTU0E,4298
|
29
|
+
cbbd/models/game_info.py,sha256=vyPFiP7KGwgkJN0uzesNTLNfZCX9s3Xq2OfmrYWlMmE,9986
|
30
|
+
cbbd/models/game_line_info.py,sha256=z8vEM52EtSTskLzRlTu81GENoMyBtCIkYnHtQ9YfhP4,4371
|
31
|
+
cbbd/models/game_lines.py,sha256=cLbMYVaDJWn_Ogu9LRMn8QbUCRI09BIZ70dFStKcYQc,5077
|
32
|
+
cbbd/models/game_media_info.py,sha256=e3WUXgaiY4hPhGjc6r9zXaeqv79Tfm8s0rQ7ypaH1cE,5672
|
33
|
+
cbbd/models/game_media_info_broadcasts_inner.py,sha256=JxL4NyGC3UAzaPSCwigaUpRcH-KZdnhHqckJP_nYaCA,2325
|
34
|
+
cbbd/models/game_status.py,sha256=JFknxj1LGEmquo98I3Fn5LkYI5kJk9-3R-zIth8_Ds4,949
|
35
|
+
cbbd/models/line_provider_info.py,sha256=qFg9_gw32RmHgXePwBtTyhwkyOu5EmyOIcItCeUMF6Q,2094
|
36
|
+
cbbd/models/play_info.py,sha256=zJaXorukAtK6ppRNmz_ecJZ9YtNPxQu5bumhRZKfJsw,9663
|
37
|
+
cbbd/models/play_info_participants_inner.py,sha256=bm3Y4mBfidjnRh76li5xg2QMw6I9UW-pcTEwWFBk6O0,2166
|
38
|
+
cbbd/models/play_type_info.py,sha256=h3vp563xwN2MQQRXYTnD37C_b5dWs6ReA6Kai6QV2TI,2062
|
39
|
+
cbbd/models/player_season_stats.py,sha256=AoNC6O91qIEA1SITfT2ma4rwX_L3ZsptUmYckb6RwAA,12542
|
40
|
+
cbbd/models/player_season_stats_win_shares.py,sha256=wQ-ARdhoP9qqfDu2EGsPOMTPKsUFmXvs_2Gxqnl_vg0,3443
|
41
|
+
cbbd/models/poll_team_info.py,sha256=ymG566FmTuuMgIOjDTqh5b_dHNFOxsRuMtROtAkDPJs,4422
|
42
|
+
cbbd/models/season_type.py,sha256=j5QUVwGx2ENDuCZQSzeuYoy_FoNly6hhCfFyMyAHKIk,895
|
43
|
+
cbbd/models/shot_info.py,sha256=ew5IVcjUMvfl3IH9LWZKYkn75lt118cyHyqFt1tHvWs,4335
|
44
|
+
cbbd/models/shot_info_location.py,sha256=VC0gZcox8pIHiDr3Oubwwk5z4r4PEtwLtEXtm-JrK08,2144
|
45
|
+
cbbd/models/shot_info_shooter.py,sha256=MDi1cfF8OJsXdn_gdVwh48M93i0117GtjEnIY4hnzbQ,2086
|
46
|
+
cbbd/models/srs_info.py,sha256=5Ulpr6STrBm85bO9YsFTpjp75tVyPdT__snSV8RAf34,2395
|
47
|
+
cbbd/models/team_info.py,sha256=1nYiZIpFiR02WvOveYh3lpBvkkc3X9qrsbTA8uO_feM,6666
|
48
|
+
cbbd/models/team_roster.py,sha256=_XiI76h8cTvMC3Qot19PwYW-hvLD9Ir8wAC9fJTk8fU,3295
|
49
|
+
cbbd/models/team_roster_player.py,sha256=Roa3i7N7sp2YUmgd8ivXJiKPFgm4qg51q74NgwbpzVk,5354
|
50
|
+
cbbd/models/team_roster_player_hometown.py,sha256=9ldIzCp_yxz2s8Xre6XtLYmwZMJFj0qM7KXEkxESEV4,2907
|
51
|
+
cbbd/models/team_season_stats.py,sha256=ZnNKY97WtJe6QuaXm9gIFz16WirOJ7uLSjyMuuwui1w,4467
|
52
|
+
cbbd/models/team_season_unit_stats.py,sha256=DqL1-P7pjiRukhCLoeoeWOfNbQV0L-juo0AoB9I-q4Q,8287
|
53
|
+
cbbd/models/team_season_unit_stats_field_goals.py,sha256=1D6xMYCQ6hPtnGI2vPUZhWHm6kXGwWYiRPIVglhzIgM,3027
|
54
|
+
cbbd/models/team_season_unit_stats_fouls.py,sha256=KvqpraEcgNYe4FnNJ7LGpzAhqIUq5BnXEcjE5dvXabo,3035
|
55
|
+
cbbd/models/team_season_unit_stats_four_factors.py,sha256=Ulsf2ijYIIRVDhCQLH97dRX7eSbmye-E-e-oUp2lEgk,3884
|
56
|
+
cbbd/models/team_season_unit_stats_points.py,sha256=5LiSqyGFYg2t5unFiQ0VgjdIy9IvULrEqy3dhI_N7p4,3499
|
57
|
+
cbbd/models/team_season_unit_stats_rebounds.py,sha256=PRKTlpO_me25f4rnfWFcRNiIKmbnhOHpEPPa9532haU,3067
|
58
|
+
cbbd/models/team_season_unit_stats_turnovers.py,sha256=C7MC4OTW1PwAsI7QuhWXzaSaUg7E4hyT-Hlf3SbQwj4,2764
|
59
|
+
cbbd/models/venue_info.py,sha256=YbY-v-SjI1FgWRI-qgnnsdseXWIRs9vg6qLdzYOhN_g,3332
|
60
|
+
cbbd-1.12.1.dist-info/METADATA,sha256=6oEzhmUeB_VlyLt3F-2rWKvBpNCqweSamEN4VMGDiDI,764
|
61
|
+
cbbd-1.12.1.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
62
|
+
cbbd-1.12.1.dist-info/top_level.txt,sha256=d8efSEMxRPpV_X-2jtQvf9S-EI4HoFQpCEOZCjDxT24,5
|
63
|
+
cbbd-1.12.1.dist-info/RECORD,,
|
cbbd-1.11.1.dist-info/RECORD
DELETED
@@ -1,61 +0,0 @@
|
|
1
|
-
cbbd/__init__.py,sha256=vdolWeNcsdfzoJdBelgVfQEgsnhe6bqaZoTlXvSXyag,3828
|
2
|
-
cbbd/api_client.py,sha256=EsXm6myUipex8oviXc1YwRNG4B2-gJ8mwDJ8TW7Qqo4,29896
|
3
|
-
cbbd/api_response.py,sha256=uCehWdXXDnAO2HAHGKe0SgpQ_mJiGDbcu-BHDF3n_IM,852
|
4
|
-
cbbd/configuration.py,sha256=Es1phuNxAxS5W7PHLWqBFnac_yC5ZogY4Yf4i01Ho5Y,14799
|
5
|
-
cbbd/exceptions.py,sha256=k78DmtV8ANk8EXUAJ3bs_E3ZgSp7EVTgwXKKqYOV1nQ,5546
|
6
|
-
cbbd/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
7
|
-
cbbd/rest.py,sha256=c9Gabxp3XtOqQal-LfLrUl9ZB87_bB_13udAvdD-m1I,14163
|
8
|
-
cbbd/api/__init__.py,sha256=U29aKlFG5cMzdwI6-aCdcGjclNGcvi0Me9-UNtja-6I,432
|
9
|
-
cbbd/api/conferences_api.py,sha256=dXvZX6gsGERpyr_WDvwMetI3sAW_G1LuozrSeWxt3p0,13079
|
10
|
-
cbbd/api/games_api.py,sha256=lX_o8ZfFQZrRNZebbS-oQiu0uRt2576q6Ez-BRqGv1E,41195
|
11
|
-
cbbd/api/lines_api.py,sha256=9H4k3V0GNsWktAl_M60N5MEPA2vaA6n9TzNR4y_mQTI,15757
|
12
|
-
cbbd/api/plays_api.py,sha256=9A-CQbtD8CYzgr6TvZsC3ESBfztSmMqqqytnyVwsa8A,35262
|
13
|
-
cbbd/api/rankings_api.py,sha256=2Vv9LrGTlb2didrWrH4lNZt2xNULJmg9y3ecF8ePOqo,10005
|
14
|
-
cbbd/api/ratings_api.py,sha256=ZYzrkLu8-bjLNr3aukPpi5Y6mKwFN-ewOZouz6zYRMs,15679
|
15
|
-
cbbd/api/stats_api.py,sha256=Vo_OZrChWOFO4AKOWnAh1lyGd1D2ZP3tiCZ8taa4cQc,20183
|
16
|
-
cbbd/api/teams_api.py,sha256=mNhR3ga2hVO7gV4xnLX0QOQboCnwmE83-irxGZ1BT24,14208
|
17
|
-
cbbd/api/venues_api.py,sha256=m5ARBiDt8JJxsjNXYQJ8UULbDhjqxZ0w_0TZ1qH324s,6568
|
18
|
-
cbbd/models/__init__.py,sha256=wLKcBuTdsNmpNFmVXC4q_AnBSkygWWR5ufcvb-zQRWk,2989
|
19
|
-
cbbd/models/adjusted_efficiency_info.py,sha256=KzURjOb7kUu3SH83I-eo_ZON5_UF1Lz-8NzJwBtyiiI,2910
|
20
|
-
cbbd/models/conference_history.py,sha256=B5U5wdYWYdm05l6N4nWvTV27hMK9E5RxgIrx0GR20l0,3084
|
21
|
-
cbbd/models/conference_history_teams_inner.py,sha256=JJ2qc89C4Ici3tsAtXxSElZbMYNVDwuWhzrmleIz7Lg,3130
|
22
|
-
cbbd/models/conference_info.py,sha256=TL4Bss8kHmjc8H71N44mWfT6S7l9LFiTGS2HnJfbrPU,2437
|
23
|
-
cbbd/models/game_box_score_players.py,sha256=WbLu_5IAkF62FBfxhx0bIkAa8N-ljtOZo3-JKJhAruU,6356
|
24
|
-
cbbd/models/game_box_score_players_players_inner.py,sha256=a4AmfYZWuHxJwr6EuDRutNNJfASWqDFJmEdWOb06Gdw,12093
|
25
|
-
cbbd/models/game_box_score_team.py,sha256=9TnZoI88Ox0YUU1PKFqXcXmUkI6qKM_4-n_r6vPxPrI,6387
|
26
|
-
cbbd/models/game_box_score_team_stats.py,sha256=PXQbDTDjVJGQERO1_7xbvc22hCAfR7T1hl8PlhT-nxI,8687
|
27
|
-
cbbd/models/game_box_score_team_stats_points.py,sha256=rFVLrTDgr3CriZ6dMk_-SCjU9X5dz517Z_rJ55zucj8,4298
|
28
|
-
cbbd/models/game_info.py,sha256=F2VSMwMfIOVQDxZLF8NjKvyHLPt1N1I3fwH6On-w-tU,9986
|
29
|
-
cbbd/models/game_line_info.py,sha256=aRLOi3YjG5ZaSz4aTpR5FlBbmGY1lFW75oG6hdfsFFg,4371
|
30
|
-
cbbd/models/game_lines.py,sha256=gRNea2CjA558YBvppDxJEk-y09noUrYuLSHy1GzclCY,5077
|
31
|
-
cbbd/models/game_media_info.py,sha256=bNYLNDWCFh3m4mVnO8TaJy79XHrcqgep--Q1u9UcNQY,5672
|
32
|
-
cbbd/models/game_media_info_broadcasts_inner.py,sha256=iBctQeldWNgEZIXJmhDib3FMUjOlP3VBbV9VoUvKznU,2325
|
33
|
-
cbbd/models/game_status.py,sha256=P4ukZOnX_htOoa54tiz0MuHk1YnJSh14BW6Jeww_5mg,949
|
34
|
-
cbbd/models/line_provider_info.py,sha256=cB72EVOoT5NMUAvyPtXnTHI74aI-_jdVBFQ-v6_sc1U,2094
|
35
|
-
cbbd/models/play_info.py,sha256=5ZPsn0lA4MpOuKoyzlKCTUQ46UBsDfvBMaMShgdhRlY,9663
|
36
|
-
cbbd/models/play_info_participants_inner.py,sha256=M0BnTnV7wJsgajUBEdqA8z8MBSYfgMF70Fn71tXFvFA,2166
|
37
|
-
cbbd/models/play_type_info.py,sha256=9ah0K2dEUSzrso4W_u1hNNPvmNPeLmGj8Y4umQRDZYA,2062
|
38
|
-
cbbd/models/player_season_stats.py,sha256=s4wfqsnasmK_hatyQqb-osWlZdnnAb05XihG-72wvPo,12542
|
39
|
-
cbbd/models/player_season_stats_win_shares.py,sha256=reSeCOVul0lcK0QP03L6qaQocUjK1jY77rmsL-5szww,3443
|
40
|
-
cbbd/models/poll_team_info.py,sha256=7dQOP-0ssPv3FNo72AjKhIxcmnysyoNDsX1lbi34lSw,4422
|
41
|
-
cbbd/models/season_type.py,sha256=cAFWjH-cfZfdGtknb8_kaCVeDOI-ixtc-oKUzoiYAvA,895
|
42
|
-
cbbd/models/shot_info.py,sha256=1VAO3euEFrEiLKA5uo7skWCjH9Jlodbc7NLgBPVSXdQ,3711
|
43
|
-
cbbd/models/shot_info_shooter.py,sha256=kHuCi1qHN7R02eiXZvAXutePf2jZhw_hl6D9bvGaP1A,2086
|
44
|
-
cbbd/models/srs_info.py,sha256=lMqtOywxtPHVPm9s7ooUIBVigxdopOADA7fxRuxHraI,2395
|
45
|
-
cbbd/models/team_info.py,sha256=-e5RtJra8AZ1V7sxi5UQO9oakqZAYLhEGlOnWcwZjyo,6666
|
46
|
-
cbbd/models/team_roster.py,sha256=htSR09iYaFJ0unAoct1TXPExJM3BVipe2vUGVhXcx0o,3295
|
47
|
-
cbbd/models/team_roster_player.py,sha256=WUc5S2ehCxqrlSmyxux5NI26EfT_rPdNwj4sGsB82Es,5354
|
48
|
-
cbbd/models/team_roster_player_hometown.py,sha256=ZZuzqsk9kJQCfm_MMMoKSs6ukocfewapQ1X2gHuIJ08,2907
|
49
|
-
cbbd/models/team_season_stats.py,sha256=iGXzzjA0U21Bg50MpP448a-SUXChCqfW-JfY3QR5Jdk,4263
|
50
|
-
cbbd/models/team_season_unit_stats.py,sha256=tYQpgRd_ID1DZS6YNphL-dIrFkvyVBhZG-pdwcW6mU8,8287
|
51
|
-
cbbd/models/team_season_unit_stats_field_goals.py,sha256=aBQZK0_HIAmRBCZ144hz2BjS7vEag3fY4Oyepq-KpBU,3027
|
52
|
-
cbbd/models/team_season_unit_stats_fouls.py,sha256=04gG0u1znp83GHCmchKCcoIAbUUP7UoiKNKcKXfxt-M,3035
|
53
|
-
cbbd/models/team_season_unit_stats_four_factors.py,sha256=H4cYvLkldtBz7K5q6va6_DPUREIWi9u61FNlgat0AT8,3884
|
54
|
-
cbbd/models/team_season_unit_stats_points.py,sha256=MmSU6Oxr1LjcwDEwkajjxeFf788rExFI7kZLmHgXrhk,3499
|
55
|
-
cbbd/models/team_season_unit_stats_rebounds.py,sha256=lARUQYrxzUyW4xRmAsp3bDvchnOqi1eIbB_59W-fSDI,3067
|
56
|
-
cbbd/models/team_season_unit_stats_turnovers.py,sha256=j40yBrl7NUTSXbZ0lcHjabtXMNqV7fM9sfYzyPVGj3E,2764
|
57
|
-
cbbd/models/venue_info.py,sha256=y_h5UKjY9i2RnU_3tVzDDtxsl18kAmB-PoBPd5ltA0A,3332
|
58
|
-
cbbd-1.11.1.dist-info/METADATA,sha256=V7lE7SxWEAysPZGYdvRDk5SiqHAsTfNyVpMjb9QTCrI,764
|
59
|
-
cbbd-1.11.1.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
60
|
-
cbbd-1.11.1.dist-info/top_level.txt,sha256=d8efSEMxRPpV_X-2jtQvf9S-EI4HoFQpCEOZCjDxT24,5
|
61
|
-
cbbd-1.11.1.dist-info/RECORD,,
|
File without changes
|
File without changes
|