cbbd 1.5.0__py3-none-any.whl → 1.6.0__py3-none-any.whl
Sign up to get free protection for your applications and to get access to all the features.
- cbbd/__init__.py +2 -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/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 +1 -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 +11 -4
- 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 +9 -2
- 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/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.5.0.dist-info → cbbd-1.6.0.dist-info}/METADATA +1 -1
- cbbd-1.6.0.dist-info/RECORD +56 -0
- cbbd-1.5.0.dist-info/RECORD +0 -56
- {cbbd-1.5.0.dist-info → cbbd-1.6.0.dist-info}/WHEEL +0 -0
- {cbbd-1.5.0.dist-info → cbbd-1.6.0.dist-info}/top_level.txt +0 -0
cbbd/__init__.py
CHANGED
@@ -7,7 +7,7 @@
|
|
7
7
|
|
8
8
|
This API is in limited Beta for Patreon subscribers. It may have bugs and is subject to changes. API keys can be acquired from the CollegeFootballData.com website.
|
9
9
|
|
10
|
-
The version of the OpenAPI document: 1.
|
10
|
+
The version of the OpenAPI document: 1.6.0
|
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.6.0"
|
19
19
|
|
20
20
|
# import apis into sdk package
|
21
21
|
from cbbd.api.conferences_api import ConferencesApi
|
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.6.0
|
9
9
|
Contact: admin@collegefootballdata.com
|
10
10
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
11
11
|
|
cbbd/api/games_api.py
CHANGED
@@ -5,7 +5,7 @@
|
|
5
5
|
|
6
6
|
This API is in limited Beta for Patreon subscribers. It may have bugs and is subject to changes. API keys can be acquired from the CollegeFootballData.com website.
|
7
7
|
|
8
|
-
The version of the OpenAPI document: 1.
|
8
|
+
The version of the OpenAPI document: 1.6.0
|
9
9
|
Contact: admin@collegefootballdata.com
|
10
10
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
11
11
|
|
cbbd/api/lines_api.py
CHANGED
@@ -5,7 +5,7 @@
|
|
5
5
|
|
6
6
|
This API is in limited Beta for Patreon subscribers. It may have bugs and is subject to changes. API keys can be acquired from the CollegeFootballData.com website.
|
7
7
|
|
8
|
-
The version of the OpenAPI document: 1.
|
8
|
+
The version of the OpenAPI document: 1.6.0
|
9
9
|
Contact: admin@collegefootballdata.com
|
10
10
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
11
11
|
|
cbbd/api/plays_api.py
CHANGED
@@ -5,7 +5,7 @@
|
|
5
5
|
|
6
6
|
This API is in limited Beta for Patreon subscribers. It may have bugs and is subject to changes. API keys can be acquired from the CollegeFootballData.com website.
|
7
7
|
|
8
|
-
The version of the OpenAPI document: 1.
|
8
|
+
The version of the OpenAPI document: 1.6.0
|
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.6.0
|
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.6.0
|
9
9
|
Contact: admin@collegefootballdata.com
|
10
10
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
11
11
|
|
cbbd/api/teams_api.py
CHANGED
@@ -5,7 +5,7 @@
|
|
5
5
|
|
6
6
|
This API is in limited Beta for Patreon subscribers. It may have bugs and is subject to changes. API keys can be acquired from the CollegeFootballData.com website.
|
7
7
|
|
8
|
-
The version of the OpenAPI document: 1.
|
8
|
+
The version of the OpenAPI document: 1.6.0
|
9
9
|
Contact: admin@collegefootballdata.com
|
10
10
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
11
11
|
|
cbbd/api/venues_api.py
CHANGED
@@ -5,7 +5,7 @@
|
|
5
5
|
|
6
6
|
This API is in limited Beta for Patreon subscribers. It may have bugs and is subject to changes. API keys can be acquired from the CollegeFootballData.com website.
|
7
7
|
|
8
|
-
The version of the OpenAPI document: 1.
|
8
|
+
The version of the OpenAPI document: 1.6.0
|
9
9
|
Contact: admin@collegefootballdata.com
|
10
10
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
11
11
|
|
cbbd/api_client.py
CHANGED
@@ -5,7 +5,7 @@
|
|
5
5
|
|
6
6
|
This API is in limited Beta for Patreon subscribers. It may have bugs and is subject to changes. API keys can be acquired from the CollegeFootballData.com website.
|
7
7
|
|
8
|
-
The version of the OpenAPI document: 1.
|
8
|
+
The version of the OpenAPI document: 1.6.0
|
9
9
|
Contact: admin@collegefootballdata.com
|
10
10
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
11
11
|
|
@@ -78,7 +78,7 @@ class ApiClient:
|
|
78
78
|
self.default_headers[header_name] = header_value
|
79
79
|
self.cookie = cookie
|
80
80
|
# Set default User-Agent.
|
81
|
-
self.user_agent = 'OpenAPI-Generator/1.
|
81
|
+
self.user_agent = 'OpenAPI-Generator/1.6.0/python'
|
82
82
|
self.client_side_validation = configuration.client_side_validation
|
83
83
|
|
84
84
|
def __enter__(self):
|
cbbd/configuration.py
CHANGED
@@ -5,7 +5,7 @@
|
|
5
5
|
|
6
6
|
This API is in limited Beta for Patreon subscribers. It may have bugs and is subject to changes. API keys can be acquired from the CollegeFootballData.com website.
|
7
7
|
|
8
|
-
The version of the OpenAPI document: 1.
|
8
|
+
The version of the OpenAPI document: 1.6.0
|
9
9
|
Contact: admin@collegefootballdata.com
|
10
10
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
11
11
|
|
@@ -376,8 +376,8 @@ class Configuration:
|
|
376
376
|
return "Python SDK Debug Report:\n"\
|
377
377
|
"OS: {env}\n"\
|
378
378
|
"Python Version: {pyversion}\n"\
|
379
|
-
"Version of the API: 1.
|
380
|
-
"SDK Package Version: 1.
|
379
|
+
"Version of the API: 1.6.0\n"\
|
380
|
+
"SDK Package Version: 1.6.0".\
|
381
381
|
format(env=sys.platform, pyversion=sys.version)
|
382
382
|
|
383
383
|
def get_host_settings(self):
|
cbbd/exceptions.py
CHANGED
@@ -5,7 +5,7 @@
|
|
5
5
|
|
6
6
|
This API is in limited Beta for Patreon subscribers. It may have bugs and is subject to changes. API keys can be acquired from the CollegeFootballData.com website.
|
7
7
|
|
8
|
-
The version of the OpenAPI document: 1.
|
8
|
+
The version of the OpenAPI document: 1.6.0
|
9
9
|
Contact: admin@collegefootballdata.com
|
10
10
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
11
11
|
|
cbbd/models/__init__.py
CHANGED
@@ -6,7 +6,7 @@
|
|
6
6
|
|
7
7
|
This API is in limited Beta for Patreon subscribers. It may have bugs and is subject to changes. API keys can be acquired from the CollegeFootballData.com website.
|
8
8
|
|
9
|
-
The version of the OpenAPI document: 1.
|
9
|
+
The version of the OpenAPI document: 1.6.0
|
10
10
|
Contact: admin@collegefootballdata.com
|
11
11
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
12
12
|
|
@@ -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.6.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.6.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.6.0
|
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.6.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.6.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.6.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.6.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.6.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.6.0
|
9
9
|
Contact: admin@collegefootballdata.com
|
10
10
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
11
11
|
|
cbbd/models/game_info.py
CHANGED
@@ -5,7 +5,7 @@
|
|
5
5
|
|
6
6
|
This API is in limited Beta for Patreon subscribers. It may have bugs and is subject to changes. API keys can be acquired from the CollegeFootballData.com website.
|
7
7
|
|
8
|
-
The version of the OpenAPI document: 1.
|
8
|
+
The version of the OpenAPI document: 1.6.0
|
9
9
|
Contact: admin@collegefootballdata.com
|
10
10
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
11
11
|
|
@@ -19,8 +19,8 @@ import re # noqa: F401
|
|
19
19
|
import json
|
20
20
|
|
21
21
|
from datetime import datetime
|
22
|
-
from typing import List, Optional
|
23
|
-
from pydantic import BaseModel, Field, StrictBool, StrictInt, StrictStr, conlist
|
22
|
+
from typing import List, Optional, Union
|
23
|
+
from pydantic import BaseModel, Field, StrictBool, StrictFloat, StrictInt, StrictStr, conlist
|
24
24
|
from cbbd.models.game_status import GameStatus
|
25
25
|
from cbbd.models.season_type import SeasonType
|
26
26
|
|
@@ -54,11 +54,12 @@ class GameInfo(BaseModel):
|
|
54
54
|
away_points: Optional[StrictInt] = Field(default=..., alias="awayPoints")
|
55
55
|
away_period_points: Optional[conlist(StrictInt)] = Field(default=..., alias="awayPeriodPoints")
|
56
56
|
away_winner: Optional[StrictBool] = Field(default=..., alias="awayWinner")
|
57
|
+
excitement: Optional[Union[StrictFloat, StrictInt]] = Field(...)
|
57
58
|
venue_id: Optional[StrictInt] = Field(default=..., alias="venueId")
|
58
59
|
venue: Optional[StrictStr] = Field(...)
|
59
60
|
city: Optional[StrictStr] = Field(...)
|
60
61
|
state: Optional[StrictStr] = Field(...)
|
61
|
-
__properties = ["id", "sourceId", "seasonLabel", "season", "seasonType", "startDate", "startTimeTbd", "neutralSite", "conferenceGame", "gameType", "status", "attendance", "homeTeamId", "homeTeam", "homeConferenceId", "homeConference", "homePoints", "homePeriodPoints", "homeWinner", "awayTeamId", "awayTeam", "awayConferenceId", "awayConference", "awayPoints", "awayPeriodPoints", "awayWinner", "venueId", "venue", "city", "state"]
|
62
|
+
__properties = ["id", "sourceId", "seasonLabel", "season", "seasonType", "startDate", "startTimeTbd", "neutralSite", "conferenceGame", "gameType", "status", "attendance", "homeTeamId", "homeTeam", "homeConferenceId", "homeConference", "homePoints", "homePeriodPoints", "homeWinner", "awayTeamId", "awayTeam", "awayConferenceId", "awayConference", "awayPoints", "awayPeriodPoints", "awayWinner", "excitement", "venueId", "venue", "city", "state"]
|
62
63
|
|
63
64
|
class Config:
|
64
65
|
"""Pydantic configuration"""
|
@@ -144,6 +145,11 @@ class GameInfo(BaseModel):
|
|
144
145
|
if self.away_winner is None and "away_winner" in self.__fields_set__:
|
145
146
|
_dict['awayWinner'] = None
|
146
147
|
|
148
|
+
# set to None if excitement (nullable) is None
|
149
|
+
# and __fields_set__ contains the field
|
150
|
+
if self.excitement is None and "excitement" in self.__fields_set__:
|
151
|
+
_dict['excitement'] = None
|
152
|
+
|
147
153
|
# set to None if venue_id (nullable) is None
|
148
154
|
# and __fields_set__ contains the field
|
149
155
|
if self.venue_id is None and "venue_id" in self.__fields_set__:
|
@@ -202,6 +208,7 @@ class GameInfo(BaseModel):
|
|
202
208
|
"away_points": obj.get("awayPoints"),
|
203
209
|
"away_period_points": obj.get("awayPeriodPoints"),
|
204
210
|
"away_winner": obj.get("awayWinner"),
|
211
|
+
"excitement": obj.get("excitement"),
|
205
212
|
"venue_id": obj.get("venueId"),
|
206
213
|
"venue": obj.get("venue"),
|
207
214
|
"city": obj.get("city"),
|
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.6.0
|
9
9
|
Contact: admin@collegefootballdata.com
|
10
10
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
11
11
|
|
cbbd/models/game_lines.py
CHANGED
@@ -5,7 +5,7 @@
|
|
5
5
|
|
6
6
|
This API is in limited Beta for Patreon subscribers. It may have bugs and is subject to changes. API keys can be acquired from the CollegeFootballData.com website.
|
7
7
|
|
8
|
-
The version of the OpenAPI document: 1.
|
8
|
+
The version of the OpenAPI document: 1.6.0
|
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.6.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.6.0
|
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.6.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.6.0
|
9
9
|
Contact: admin@collegefootballdata.com
|
10
10
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
11
11
|
|
cbbd/models/play_info.py
CHANGED
@@ -5,7 +5,7 @@
|
|
5
5
|
|
6
6
|
This API is in limited Beta for Patreon subscribers. It may have bugs and is subject to changes. API keys can be acquired from the CollegeFootballData.com website.
|
7
7
|
|
8
|
-
The version of the OpenAPI document: 1.
|
8
|
+
The version of the OpenAPI document: 1.6.0
|
9
9
|
Contact: admin@collegefootballdata.com
|
10
10
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
11
11
|
|
@@ -49,13 +49,14 @@ class PlayInfo(BaseModel):
|
|
49
49
|
seconds_remaining: StrictInt = Field(default=..., alias="secondsRemaining")
|
50
50
|
home_score: StrictInt = Field(default=..., alias="homeScore")
|
51
51
|
away_score: StrictInt = Field(default=..., alias="awayScore")
|
52
|
+
home_win_probability: Optional[Union[StrictFloat, StrictInt]] = Field(default=..., alias="homeWinProbability")
|
52
53
|
scoring_play: Optional[StrictBool] = Field(default=..., alias="scoringPlay")
|
53
54
|
shooting_play: Optional[StrictBool] = Field(default=..., alias="shootingPlay")
|
54
55
|
score_value: Optional[Union[StrictFloat, StrictInt]] = Field(default=..., alias="scoreValue")
|
55
56
|
wallclock: Optional[datetime] = Field(...)
|
56
57
|
play_text: Optional[StrictStr] = Field(default=..., alias="playText")
|
57
58
|
participants: conlist(PlayInfoParticipantsInner) = Field(...)
|
58
|
-
__properties = ["id", "sourceId", "gameId", "gameSourceId", "gameStartDate", "season", "seasonType", "gameType", "playType", "isHomeTeam", "teamId", "team", "conference", "opponentId", "opponent", "opponentConference", "period", "clock", "secondsRemaining", "homeScore", "awayScore", "scoringPlay", "shootingPlay", "scoreValue", "wallclock", "playText", "participants"]
|
59
|
+
__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"]
|
59
60
|
|
60
61
|
class Config:
|
61
62
|
"""Pydantic configuration"""
|
@@ -123,6 +124,11 @@ class PlayInfo(BaseModel):
|
|
123
124
|
if self.opponent_conference is None and "opponent_conference" in self.__fields_set__:
|
124
125
|
_dict['opponentConference'] = None
|
125
126
|
|
127
|
+
# set to None if home_win_probability (nullable) is None
|
128
|
+
# and __fields_set__ contains the field
|
129
|
+
if self.home_win_probability is None and "home_win_probability" in self.__fields_set__:
|
130
|
+
_dict['homeWinProbability'] = None
|
131
|
+
|
126
132
|
# set to None if scoring_play (nullable) is None
|
127
133
|
# and __fields_set__ contains the field
|
128
134
|
if self.scoring_play is None and "scoring_play" in self.__fields_set__:
|
@@ -181,6 +187,7 @@ class PlayInfo(BaseModel):
|
|
181
187
|
"seconds_remaining": obj.get("secondsRemaining"),
|
182
188
|
"home_score": obj.get("homeScore"),
|
183
189
|
"away_score": obj.get("awayScore"),
|
190
|
+
"home_win_probability": obj.get("homeWinProbability"),
|
184
191
|
"scoring_play": obj.get("scoringPlay"),
|
185
192
|
"shooting_play": obj.get("shootingPlay"),
|
186
193
|
"score_value": obj.get("scoreValue"),
|
@@ -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.6.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.6.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.6.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.6.0
|
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.6.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.6.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.6.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.6.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.6.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.6.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.6.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.6.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.6.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.6.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.6.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.6.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.6.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.6.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.6.0
|
9
9
|
Contact: admin@collegefootballdata.com
|
10
10
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
11
11
|
|
@@ -0,0 +1,56 @@
|
|
1
|
+
cbbd/__init__.py,sha256=rzBlUIz5se_7rCvj9FbjB_rzJ0Y15U4ZkzabpkraHO8,3545
|
2
|
+
cbbd/api_client.py,sha256=orgmwM5TRRZDXvqWRlJjt9G-ud72lvZ14wLSCTE0gw8,29894
|
3
|
+
cbbd/api_response.py,sha256=uCehWdXXDnAO2HAHGKe0SgpQ_mJiGDbcu-BHDF3n_IM,852
|
4
|
+
cbbd/configuration.py,sha256=RR8sXwsxEzJdVs12P2xc1A_s8b2NuWaYL4emm5JZ7Bs,14796
|
5
|
+
cbbd/exceptions.py,sha256=Myl45KCZcnjz4pcGYYG2qF-RMzu4HaxakOr-wSxPBEQ,5545
|
6
|
+
cbbd/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
7
|
+
cbbd/rest.py,sha256=kizviUi-G4cf2UUo7v5cmhnAQp7ZYLDvi2fdFwPLjuc,14162
|
8
|
+
cbbd/api/__init__.py,sha256=eZkj51ZLdv2e_6U9bEPVhek2eV3QDX6xyLoDQKMaGF4,386
|
9
|
+
cbbd/api/conferences_api.py,sha256=E8r2ARjjFmKQ7A2sJmQH7teybmD4XcIB75WqtkiIseA,13078
|
10
|
+
cbbd/api/games_api.py,sha256=hlHAcNcW-g7qszT9juj69nbUYDBccIgoHOyf7-F3-00,41194
|
11
|
+
cbbd/api/lines_api.py,sha256=OcRqoXo8BCGNIp4pUsVfYD9A4AOsmNCtn23smvcNJz4,15756
|
12
|
+
cbbd/api/plays_api.py,sha256=Q3CSoXJNeIe0PfOdxJWbTDhJ4QmEv1MISKZ-IDcjl9k,32183
|
13
|
+
cbbd/api/ratings_api.py,sha256=0WLPt_-339RzPVsEBg8ldaZg6LfEk9qAADWU46N7ZO8,15678
|
14
|
+
cbbd/api/stats_api.py,sha256=_a008CmmJ3E545LURVgpVwBz0QQ_yfoRcCaRizO-0aU,20182
|
15
|
+
cbbd/api/teams_api.py,sha256=IqFmNgpziMQiQStz1-Zw59Q2Ib5DcjxJQhw3i88neyA,14207
|
16
|
+
cbbd/api/venues_api.py,sha256=nRcQLf0VnHlgB4KeLGWBImyEp3Y82lI1oiiiB4lOqnI,6567
|
17
|
+
cbbd/models/__init__.py,sha256=DMdMCnt_4w_b9G9MStb7nt1hBAGjr98BrODGcNtWOqM,2753
|
18
|
+
cbbd/models/adjusted_efficiency_info.py,sha256=4venZkgrWCtF3HaMJIgqzKhnKzttmeg4kZVeyUoTuYM,2909
|
19
|
+
cbbd/models/conference_history.py,sha256=4PnsZOX5-X5VKB3DAVRslpFAiUdwepJspogBTJyiil4,3083
|
20
|
+
cbbd/models/conference_history_teams_inner.py,sha256=tSHFAdN8EzjhVB0tn_kkeARr7wxECLQU9vSRCqnddMc,3129
|
21
|
+
cbbd/models/conference_info.py,sha256=DlwR-hjHYD3h1Ea6pYYq8w57Mm5h3qgMbj6P6pWAAVk,2436
|
22
|
+
cbbd/models/game_box_score_players.py,sha256=HwzMkIijESOmV2rjJophAD7i3lMpGbMUvz4H-PUoJII,6355
|
23
|
+
cbbd/models/game_box_score_players_players_inner.py,sha256=qHc6geGkydsfBz28tyhhRkGr7ETtP1T9BRy21e0btSs,12092
|
24
|
+
cbbd/models/game_box_score_team.py,sha256=gcn2T5Af2qgX5Xv0_IpVnEjlMNyQsVMO6uPu23jkbts,6386
|
25
|
+
cbbd/models/game_box_score_team_stats.py,sha256=CYUeNM7Pi79X9ttWiaPie_xaQr7_9fheVghG-0u9FrM,8686
|
26
|
+
cbbd/models/game_box_score_team_stats_points.py,sha256=VaZnOazehMGRizJeue7Zk5UQLwZpyDeDWaeaKl-z0CQ,4297
|
27
|
+
cbbd/models/game_info.py,sha256=1-PtWCMHgwAl4FR9-37Bil6OoqRfMf3QSiUpDgdo0HY,9985
|
28
|
+
cbbd/models/game_line_info.py,sha256=sE_KpVD1o8kSHRUzjIRLjdVmxwDWp2_U5JpnvmjmmDg,4370
|
29
|
+
cbbd/models/game_lines.py,sha256=eFaUKmqDcYBnEtyNnI3ggVJdlFkB-AqMdBcJfQjQb9k,5076
|
30
|
+
cbbd/models/game_media_info.py,sha256=7mEuO40Q8jbLdTekXfz_fCqzW6_83LT_hCDfvddstFk,5671
|
31
|
+
cbbd/models/game_media_info_broadcasts_inner.py,sha256=2NBz-M91nuvogBK0Wiz4i9CVpNu92aKkuRuyxXuNlIY,2324
|
32
|
+
cbbd/models/game_status.py,sha256=_CSCKG5EtDwHKDh8NCXOYfL5Z77RQ2r0N5Dzks012SE,948
|
33
|
+
cbbd/models/line_provider_info.py,sha256=xxUuMeUAx-BMpHDbAfTOEwoEDuYwTjzBZiLJ6i9XcPk,2093
|
34
|
+
cbbd/models/play_info.py,sha256=DYmDjAgz4ey6KA7bTqE9lFzSpTJlWOuvc3FgtFVHMC0,9037
|
35
|
+
cbbd/models/play_info_participants_inner.py,sha256=0BPk9BlsqmtrN-fRGLpCnag81s8ufyHGXySzwrU741k,2165
|
36
|
+
cbbd/models/play_type_info.py,sha256=AUqWGS8oAM-3rm6ZthCNRD_7lfWCrNuBo-mmTBb_rbk,2061
|
37
|
+
cbbd/models/player_season_stats.py,sha256=IICLtkFsJJPY6bMGEtonBDMt33p10nH2hS8Q23OFXBE,11712
|
38
|
+
cbbd/models/season_type.py,sha256=fQZcTUQyZtnzNiuv8yBOeBsMRrk3N7wnjIksm-Sjtn8,894
|
39
|
+
cbbd/models/srs_info.py,sha256=UlX1w1EEjxIHa1zsjeVifgB6uBceMJpOluL-ahpWXVM,2394
|
40
|
+
cbbd/models/team_info.py,sha256=XOYOr2C3AoETUYNYcMUEWxvws9i9suI0wW6Pa3DbXOo,6665
|
41
|
+
cbbd/models/team_roster.py,sha256=e27eX3kuxTIBPzIEprkCW0Xkd3rCqvlhiIoJOaz6SNc,3294
|
42
|
+
cbbd/models/team_roster_player.py,sha256=u6Q3CVPrbX6M62YwMjD6Y8hJEkpagXAud8JfClxVbGQ,5353
|
43
|
+
cbbd/models/team_roster_player_hometown.py,sha256=uZ-CQJv8Kjfzq-cshhmaQaNyEATqop5OQF6VyosnBoE,2906
|
44
|
+
cbbd/models/team_season_stats.py,sha256=8qfVGC9hj4zwuZUn8zc-us0jwrj7Jfze7E1M5ozdY9Q,4262
|
45
|
+
cbbd/models/team_season_unit_stats.py,sha256=lJ9ngAgLuySAGNksKDL9Dn857SiPRwSM80cREpCafvM,8286
|
46
|
+
cbbd/models/team_season_unit_stats_field_goals.py,sha256=JYGSlNA4HW_tq2E4oL4Lg2_ICai8IL8MO-N_okUVKf0,3026
|
47
|
+
cbbd/models/team_season_unit_stats_fouls.py,sha256=NBKj1SODcVc-1JQ_DosunABijMVRTea8nShsNYTa2dQ,3034
|
48
|
+
cbbd/models/team_season_unit_stats_four_factors.py,sha256=ySPSzASdkZk832ajpvH8Sr_hSYsL1WCrpW7pj9IVisY,3883
|
49
|
+
cbbd/models/team_season_unit_stats_points.py,sha256=P5GjRFZD9BqVPXdWZnPb9FQAXkjW8EpMG0yECoikeq0,3498
|
50
|
+
cbbd/models/team_season_unit_stats_rebounds.py,sha256=OYAzYASFSc_WNpw2T3XrK0RN44NuDIQB5N-2dhgjgr8,3066
|
51
|
+
cbbd/models/team_season_unit_stats_turnovers.py,sha256=ZcjNxgZI3l7XxQucKaVUwWPpKhOk7jyLx7ypn8mdU90,2763
|
52
|
+
cbbd/models/venue_info.py,sha256=zX3b7Fu0qyqlDEmFTxTOMv76uEWTKGvonOQjxM8SPKw,3331
|
53
|
+
cbbd-1.6.0.dist-info/METADATA,sha256=fkXI8fM15bZbZWVNfv9Vc4mA60I6lvEvHp7kxsW4h58,763
|
54
|
+
cbbd-1.6.0.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
55
|
+
cbbd-1.6.0.dist-info/top_level.txt,sha256=d8efSEMxRPpV_X-2jtQvf9S-EI4HoFQpCEOZCjDxT24,5
|
56
|
+
cbbd-1.6.0.dist-info/RECORD,,
|
cbbd-1.5.0.dist-info/RECORD
DELETED
@@ -1,56 +0,0 @@
|
|
1
|
-
cbbd/__init__.py,sha256=Xmx_GRDIsJaPnXr-NGRHzYirwIVfhWBEzPtWI0pbDU8,3545
|
2
|
-
cbbd/api_client.py,sha256=HEMXCIYpBN3M2BNC3O9bE5KVeiB4C5UQoCRgg7TOUnw,29894
|
3
|
-
cbbd/api_response.py,sha256=uCehWdXXDnAO2HAHGKe0SgpQ_mJiGDbcu-BHDF3n_IM,852
|
4
|
-
cbbd/configuration.py,sha256=RcBdjqtYNMs3ySemiCr5QQdxUWg80IGu1h_xZYb0Bwg,14796
|
5
|
-
cbbd/exceptions.py,sha256=rkzM-LJZbAg72bnCxDWFSdpuE9zrcDzXwg2iCRom96c,5545
|
6
|
-
cbbd/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
7
|
-
cbbd/rest.py,sha256=_By-EEHyD_6Aicx_k0kny49rbcUCehq012yAHiGiWnA,14162
|
8
|
-
cbbd/api/__init__.py,sha256=eZkj51ZLdv2e_6U9bEPVhek2eV3QDX6xyLoDQKMaGF4,386
|
9
|
-
cbbd/api/conferences_api.py,sha256=N-E8JatIAyPjo3Oy2u-Phx0V6XTiPwejMuZJ54KqY4w,13078
|
10
|
-
cbbd/api/games_api.py,sha256=ulgujuVJkRf_DIvY0CNDPRg5OGKzgfmFMkOqaXhiBsE,41194
|
11
|
-
cbbd/api/lines_api.py,sha256=WOWqgLrMmYzAIkgRxh68dgFJQqG0yDSGownnslE_evs,15756
|
12
|
-
cbbd/api/plays_api.py,sha256=O_U2ack4K6YctVV49ewiwhghCzHXev1hsLdnMVU3RyA,32183
|
13
|
-
cbbd/api/ratings_api.py,sha256=F1z6fdGb-yZKH83iBkO5-tCMOjhScsDYGrPogXAq2mw,15678
|
14
|
-
cbbd/api/stats_api.py,sha256=lffaD9Q0tVq6pwW2wrMoUt44ZZ7dQGCtkZZmgRpoWRg,20182
|
15
|
-
cbbd/api/teams_api.py,sha256=cAs8n8qr8Cr-8azxXtObDD07bw5VxU4ZNRRNJh0RFWg,14207
|
16
|
-
cbbd/api/venues_api.py,sha256=T10NusWsv1yfGxM653nA6mEP2-oIL9uIsq0ftqVXOXA,6567
|
17
|
-
cbbd/models/__init__.py,sha256=ImoA4ubWgfdRo6vbbUVSTJxHsC0fTwpm_7q1Xg3gUXQ,2753
|
18
|
-
cbbd/models/adjusted_efficiency_info.py,sha256=OkkOBaS4solnM7quJDQje6z709bAiKK4QDPy29ELpH0,2909
|
19
|
-
cbbd/models/conference_history.py,sha256=QxWtvm9Oxqyd-Krsp3Psus5i3Fx3TnRIWRUXAGQuBqs,3083
|
20
|
-
cbbd/models/conference_history_teams_inner.py,sha256=dHsoTj6ZIlgmpSJ3s9qxyhtXUExTDa3alsDI-Y0UHFY,3129
|
21
|
-
cbbd/models/conference_info.py,sha256=5oAVR-hwujZpODUNKzWTTkQfO_zdgcmACTia2zyVsy0,2436
|
22
|
-
cbbd/models/game_box_score_players.py,sha256=G4aetsBDPVVF_G8AOlYfHdJtvdjwHMCqciFrTkh_REY,6355
|
23
|
-
cbbd/models/game_box_score_players_players_inner.py,sha256=7XxU2JmBpLm1zT0bMe_VsdC8sN9kRsQt4pC7ONOuONg,12092
|
24
|
-
cbbd/models/game_box_score_team.py,sha256=4sL_XswBmrnBH78LGHvvmQTHKS1X4MxvuHkwKyndUj8,6386
|
25
|
-
cbbd/models/game_box_score_team_stats.py,sha256=zUgDyWvBzRLU26hprJpN5wa0czB9lZECe79xBktYcQw,8686
|
26
|
-
cbbd/models/game_box_score_team_stats_points.py,sha256=tuK2TEwX6JteSZbCtzjnST2-Std-Md0xbE9egOR2NII,4297
|
27
|
-
cbbd/models/game_info.py,sha256=xGtq9PLQNKZQUmpcKleCdCszvusT7sbamoSkps6xkcU,9614
|
28
|
-
cbbd/models/game_line_info.py,sha256=d3WbCCEfELBrbiCTKCFlltTg5E33YTOT8i2-2TrlyEg,4370
|
29
|
-
cbbd/models/game_lines.py,sha256=MEIy5ujJzvbVxF4N85nhrhc1cRZ0f-SNd5wvB-cgdQ4,5076
|
30
|
-
cbbd/models/game_media_info.py,sha256=iddQbV9bwGl0oYHekn708DpO_-kCf21d8tVTKH_0PjU,5671
|
31
|
-
cbbd/models/game_media_info_broadcasts_inner.py,sha256=FnOeW8BVhAk8wnEYwMuL1YqBgucALI5Nm9nlYd4DD6k,2324
|
32
|
-
cbbd/models/game_status.py,sha256=jzqLVPGW_zs1W7PHp1QpLzusGttJ7CS6wjK78wlBnu8,948
|
33
|
-
cbbd/models/line_provider_info.py,sha256=AqAtNP34jFiNs5IxNKot8QBtL5Rsg5-HieBjAVvK-L4,2093
|
34
|
-
cbbd/models/play_info.py,sha256=qVuLaR-RLVZxRrzAohPJk2xMXFgcJ_xEBNKrTH1VqcM,8576
|
35
|
-
cbbd/models/play_info_participants_inner.py,sha256=Fhazd75tcJpP_Y5gppdzFJOff6h1pu8mc_1Kztqjdjs,2165
|
36
|
-
cbbd/models/play_type_info.py,sha256=TbadXA4VXbcchy7-Kv6Ya3bjdMWktjtFOzzJIwDCzjI,2061
|
37
|
-
cbbd/models/player_season_stats.py,sha256=9wMzktvNQgoR9CPc1hdOtb9B1RCyCLrgTarakiTnQ5I,11712
|
38
|
-
cbbd/models/season_type.py,sha256=UIJ7Qu2VwVIlDNsbse3IU7WAvC8VUNnHhsgOC7ogjHc,894
|
39
|
-
cbbd/models/srs_info.py,sha256=0A0u4fkdMapDYPulsyOgOQbyv3X4lk4lMlcJp0zcDbo,2394
|
40
|
-
cbbd/models/team_info.py,sha256=rwRKf41y2Fin3BpikB_gY_JKqf_FDldHrVl8bx7_1HU,6665
|
41
|
-
cbbd/models/team_roster.py,sha256=jtRP6zglNNN04D3--uxo_TpWWOECSSc7IJNuS75G1NE,3294
|
42
|
-
cbbd/models/team_roster_player.py,sha256=SLdnpr4aCr_1qRYq79PSm4dlS6Dc5ndcvW8gaINDXRs,5353
|
43
|
-
cbbd/models/team_roster_player_hometown.py,sha256=F-slER1I2spmWBQ4nWuOdWoMwwNvhhnR788H2GcdiXc,2906
|
44
|
-
cbbd/models/team_season_stats.py,sha256=e4_5u9xS7KJ4sxD1aNSZvg5Ka4L40w8R2uUtMuwyLsA,4262
|
45
|
-
cbbd/models/team_season_unit_stats.py,sha256=wfxPQ8t6QEI4YwP53Zjm28R48MPpDtwhyH1nkz62rwM,8286
|
46
|
-
cbbd/models/team_season_unit_stats_field_goals.py,sha256=DISl1Hy25WTKdj4ity1IHC_6jngR4csiaFA7iMUNuqc,3026
|
47
|
-
cbbd/models/team_season_unit_stats_fouls.py,sha256=AQM2RqDG468se2rEKgPte6tU7y-v3IMA3FFBJJndeM0,3034
|
48
|
-
cbbd/models/team_season_unit_stats_four_factors.py,sha256=2teokvSi1uv9H5XwhIeRTowGQysMw-p196oIPxrezp8,3883
|
49
|
-
cbbd/models/team_season_unit_stats_points.py,sha256=gXo9i6bfuZo9jIwl9q0fs4Mbmr0pX0Foa2oaweVTPDM,3498
|
50
|
-
cbbd/models/team_season_unit_stats_rebounds.py,sha256=v1wGxInft-iMUNj7MOdW-HlzjeoqnIWUYgRVlIXCzE0,3066
|
51
|
-
cbbd/models/team_season_unit_stats_turnovers.py,sha256=g3Eh9rx87coRiohO4XU-QESD-Q5lyl6p0ljK7yh3QMQ,2763
|
52
|
-
cbbd/models/venue_info.py,sha256=aTn-OF9sDPXrXXPgTKRK6IILUSMngASsuw6A33lCeGY,3331
|
53
|
-
cbbd-1.5.0.dist-info/METADATA,sha256=pGRaIZUVeJ5_KooAdJm9waQ0By_td93m8Uuva_71-38,763
|
54
|
-
cbbd-1.5.0.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
55
|
-
cbbd-1.5.0.dist-info/top_level.txt,sha256=d8efSEMxRPpV_X-2jtQvf9S-EI4HoFQpCEOZCjDxT24,5
|
56
|
-
cbbd-1.5.0.dist-info/RECORD,,
|
File without changes
|
File without changes
|