cbbd 1.2.0__py3-none-any.whl → 1.3.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (52) hide show
  1. cbbd/__init__.py +6 -2
  2. cbbd/api/__init__.py +1 -0
  3. cbbd/api/conferences_api.py +1 -1
  4. cbbd/api/games_api.py +1 -1
  5. cbbd/api/lines_api.py +358 -0
  6. cbbd/api/plays_api.py +1 -1
  7. cbbd/api/stats_api.py +1 -1
  8. cbbd/api/teams_api.py +1 -1
  9. cbbd/api/venues_api.py +1 -1
  10. cbbd/api_client.py +2 -2
  11. cbbd/configuration.py +3 -3
  12. cbbd/exceptions.py +1 -1
  13. cbbd/models/__init__.py +4 -1
  14. cbbd/models/conference_history.py +1 -1
  15. cbbd/models/conference_history_teams_inner.py +1 -1
  16. cbbd/models/conference_info.py +1 -1
  17. cbbd/models/game_box_score_players.py +1 -1
  18. cbbd/models/game_box_score_players_players_inner.py +1 -1
  19. cbbd/models/game_box_score_team.py +1 -1
  20. cbbd/models/game_box_score_team_stats.py +1 -1
  21. cbbd/models/game_box_score_team_stats_points.py +1 -1
  22. cbbd/models/game_info.py +1 -1
  23. cbbd/models/game_line_info.py +114 -0
  24. cbbd/models/game_lines.py +125 -0
  25. cbbd/models/game_media_info.py +1 -1
  26. cbbd/models/game_media_info_broadcasts_inner.py +1 -1
  27. cbbd/models/game_status.py +1 -1
  28. cbbd/models/line_provider_info.py +74 -0
  29. cbbd/models/play_info.py +1 -1
  30. cbbd/models/play_info_participants_inner.py +1 -1
  31. cbbd/models/play_type_info.py +1 -1
  32. cbbd/models/player_season_stats.py +1 -1
  33. cbbd/models/season_type.py +1 -1
  34. cbbd/models/team_info.py +1 -1
  35. cbbd/models/team_roster.py +1 -1
  36. cbbd/models/team_roster_player.py +1 -1
  37. cbbd/models/team_roster_player_hometown.py +1 -1
  38. cbbd/models/team_season_stats.py +1 -1
  39. cbbd/models/team_season_unit_stats.py +1 -1
  40. cbbd/models/team_season_unit_stats_field_goals.py +1 -1
  41. cbbd/models/team_season_unit_stats_fouls.py +1 -1
  42. cbbd/models/team_season_unit_stats_four_factors.py +1 -1
  43. cbbd/models/team_season_unit_stats_points.py +1 -1
  44. cbbd/models/team_season_unit_stats_rebounds.py +1 -1
  45. cbbd/models/team_season_unit_stats_turnovers.py +1 -1
  46. cbbd/models/venue_info.py +1 -1
  47. cbbd/rest.py +1 -1
  48. {cbbd-1.2.0.dist-info → cbbd-1.3.0.dist-info}/METADATA +1 -1
  49. cbbd-1.3.0.dist-info/RECORD +53 -0
  50. cbbd-1.2.0.dist-info/RECORD +0 -49
  51. {cbbd-1.2.0.dist-info → cbbd-1.3.0.dist-info}/WHEEL +0 -0
  52. {cbbd-1.2.0.dist-info → cbbd-1.3.0.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,114 @@
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.3.0
9
+ Contact: admin@collegefootballdata.com
10
+ Generated by OpenAPI Generator (https://openapi-generator.tech)
11
+
12
+ Do not edit the class manually.
13
+ """ # noqa: E501
14
+
15
+
16
+ from __future__ import annotations
17
+ import pprint
18
+ import re # noqa: F401
19
+ import json
20
+
21
+
22
+ from typing import Optional, Union
23
+ from pydantic import BaseModel, Field, StrictFloat, StrictInt, StrictStr
24
+
25
+ class GameLineInfo(BaseModel):
26
+ """
27
+ GameLineInfo
28
+ """
29
+ provider: StrictStr = Field(...)
30
+ spread: Optional[Union[StrictFloat, StrictInt]] = Field(...)
31
+ over_under: Optional[Union[StrictFloat, StrictInt]] = Field(default=..., alias="overUnder")
32
+ home_moneyline: Optional[Union[StrictFloat, StrictInt]] = Field(default=..., alias="homeMoneyline")
33
+ away_moneyline: Optional[Union[StrictFloat, StrictInt]] = Field(default=..., alias="awayMoneyline")
34
+ spread_open: Optional[Union[StrictFloat, StrictInt]] = Field(default=..., alias="spreadOpen")
35
+ over_under_open: Optional[Union[StrictFloat, StrictInt]] = Field(default=..., alias="overUnderOpen")
36
+ __properties = ["provider", "spread", "overUnder", "homeMoneyline", "awayMoneyline", "spreadOpen", "overUnderOpen"]
37
+
38
+ class Config:
39
+ """Pydantic configuration"""
40
+ allow_population_by_field_name = True
41
+ validate_assignment = True
42
+
43
+ def to_str(self) -> str:
44
+ """Returns the string representation of the model using alias"""
45
+ return pprint.pformat(self.dict(by_alias=True))
46
+
47
+ def to_json(self) -> str:
48
+ """Returns the JSON representation of the model using alias"""
49
+ return json.dumps(self.to_dict())
50
+
51
+ @classmethod
52
+ def from_json(cls, json_str: str) -> GameLineInfo:
53
+ """Create an instance of GameLineInfo from a JSON string"""
54
+ return cls.from_dict(json.loads(json_str))
55
+
56
+ def to_dict(self):
57
+ """Returns the dictionary representation of the model using alias"""
58
+ _dict = self.dict(by_alias=True,
59
+ exclude={
60
+ },
61
+ exclude_none=True)
62
+ # set to None if spread (nullable) is None
63
+ # and __fields_set__ contains the field
64
+ if self.spread is None and "spread" in self.__fields_set__:
65
+ _dict['spread'] = None
66
+
67
+ # set to None if over_under (nullable) is None
68
+ # and __fields_set__ contains the field
69
+ if self.over_under is None and "over_under" in self.__fields_set__:
70
+ _dict['overUnder'] = None
71
+
72
+ # set to None if home_moneyline (nullable) is None
73
+ # and __fields_set__ contains the field
74
+ if self.home_moneyline is None and "home_moneyline" in self.__fields_set__:
75
+ _dict['homeMoneyline'] = None
76
+
77
+ # set to None if away_moneyline (nullable) is None
78
+ # and __fields_set__ contains the field
79
+ if self.away_moneyline is None and "away_moneyline" in self.__fields_set__:
80
+ _dict['awayMoneyline'] = None
81
+
82
+ # set to None if spread_open (nullable) is None
83
+ # and __fields_set__ contains the field
84
+ if self.spread_open is None and "spread_open" in self.__fields_set__:
85
+ _dict['spreadOpen'] = None
86
+
87
+ # set to None if over_under_open (nullable) is None
88
+ # and __fields_set__ contains the field
89
+ if self.over_under_open is None and "over_under_open" in self.__fields_set__:
90
+ _dict['overUnderOpen'] = None
91
+
92
+ return _dict
93
+
94
+ @classmethod
95
+ def from_dict(cls, obj: dict) -> GameLineInfo:
96
+ """Create an instance of GameLineInfo from a dict"""
97
+ if obj is None:
98
+ return None
99
+
100
+ if not isinstance(obj, dict):
101
+ return GameLineInfo.parse_obj(obj)
102
+
103
+ _obj = GameLineInfo.parse_obj({
104
+ "provider": obj.get("provider"),
105
+ "spread": obj.get("spread"),
106
+ "over_under": obj.get("overUnder"),
107
+ "home_moneyline": obj.get("homeMoneyline"),
108
+ "away_moneyline": obj.get("awayMoneyline"),
109
+ "spread_open": obj.get("spreadOpen"),
110
+ "over_under_open": obj.get("overUnderOpen")
111
+ })
112
+ return _obj
113
+
114
+
@@ -0,0 +1,125 @@
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.3.0
9
+ Contact: admin@collegefootballdata.com
10
+ Generated by OpenAPI Generator (https://openapi-generator.tech)
11
+
12
+ Do not edit the class manually.
13
+ """ # noqa: E501
14
+
15
+
16
+ from __future__ import annotations
17
+ import pprint
18
+ import re # noqa: F401
19
+ import json
20
+
21
+ from datetime import datetime
22
+ from typing import List, Optional, Union
23
+ from pydantic import BaseModel, Field, StrictFloat, StrictInt, StrictStr, conlist
24
+ from cbbd.models.game_line_info import GameLineInfo
25
+ from cbbd.models.season_type import SeasonType
26
+
27
+ class GameLines(BaseModel):
28
+ """
29
+ GameLines
30
+ """
31
+ game_id: StrictInt = Field(default=..., alias="gameId")
32
+ season: StrictInt = Field(...)
33
+ season_type: SeasonType = Field(default=..., alias="seasonType")
34
+ start_date: datetime = Field(default=..., alias="startDate")
35
+ home_team_id: StrictInt = Field(default=..., alias="homeTeamId")
36
+ home_team: StrictStr = Field(default=..., alias="homeTeam")
37
+ home_conference: Optional[StrictStr] = Field(default=..., alias="homeConference")
38
+ home_score: Optional[Union[StrictFloat, StrictInt]] = Field(default=..., alias="homeScore")
39
+ away_team_id: StrictInt = Field(default=..., alias="awayTeamId")
40
+ away_team: StrictStr = Field(default=..., alias="awayTeam")
41
+ away_conference: Optional[StrictStr] = Field(default=..., alias="awayConference")
42
+ away_score: Optional[Union[StrictFloat, StrictInt]] = Field(default=..., alias="awayScore")
43
+ lines: conlist(GameLineInfo) = Field(...)
44
+ __properties = ["gameId", "season", "seasonType", "startDate", "homeTeamId", "homeTeam", "homeConference", "homeScore", "awayTeamId", "awayTeam", "awayConference", "awayScore", "lines"]
45
+
46
+ class Config:
47
+ """Pydantic configuration"""
48
+ allow_population_by_field_name = True
49
+ validate_assignment = True
50
+
51
+ def to_str(self) -> str:
52
+ """Returns the string representation of the model using alias"""
53
+ return pprint.pformat(self.dict(by_alias=True))
54
+
55
+ def to_json(self) -> str:
56
+ """Returns the JSON representation of the model using alias"""
57
+ return json.dumps(self.to_dict())
58
+
59
+ @classmethod
60
+ def from_json(cls, json_str: str) -> GameLines:
61
+ """Create an instance of GameLines from a JSON string"""
62
+ return cls.from_dict(json.loads(json_str))
63
+
64
+ def to_dict(self):
65
+ """Returns the dictionary representation of the model using alias"""
66
+ _dict = self.dict(by_alias=True,
67
+ exclude={
68
+ },
69
+ exclude_none=True)
70
+ # override the default output from pydantic by calling `to_dict()` of each item in lines (list)
71
+ _items = []
72
+ if self.lines:
73
+ for _item in self.lines:
74
+ if _item:
75
+ _items.append(_item.to_dict())
76
+ _dict['lines'] = _items
77
+ # set to None if home_conference (nullable) is None
78
+ # and __fields_set__ contains the field
79
+ if self.home_conference is None and "home_conference" in self.__fields_set__:
80
+ _dict['homeConference'] = None
81
+
82
+ # set to None if home_score (nullable) is None
83
+ # and __fields_set__ contains the field
84
+ if self.home_score is None and "home_score" in self.__fields_set__:
85
+ _dict['homeScore'] = None
86
+
87
+ # set to None if away_conference (nullable) is None
88
+ # and __fields_set__ contains the field
89
+ if self.away_conference is None and "away_conference" in self.__fields_set__:
90
+ _dict['awayConference'] = None
91
+
92
+ # set to None if away_score (nullable) is None
93
+ # and __fields_set__ contains the field
94
+ if self.away_score is None and "away_score" in self.__fields_set__:
95
+ _dict['awayScore'] = None
96
+
97
+ return _dict
98
+
99
+ @classmethod
100
+ def from_dict(cls, obj: dict) -> GameLines:
101
+ """Create an instance of GameLines from a dict"""
102
+ if obj is None:
103
+ return None
104
+
105
+ if not isinstance(obj, dict):
106
+ return GameLines.parse_obj(obj)
107
+
108
+ _obj = GameLines.parse_obj({
109
+ "game_id": obj.get("gameId"),
110
+ "season": obj.get("season"),
111
+ "season_type": obj.get("seasonType"),
112
+ "start_date": obj.get("startDate"),
113
+ "home_team_id": obj.get("homeTeamId"),
114
+ "home_team": obj.get("homeTeam"),
115
+ "home_conference": obj.get("homeConference"),
116
+ "home_score": obj.get("homeScore"),
117
+ "away_team_id": obj.get("awayTeamId"),
118
+ "away_team": obj.get("awayTeam"),
119
+ "away_conference": obj.get("awayConference"),
120
+ "away_score": obj.get("awayScore"),
121
+ "lines": [GameLineInfo.from_dict(_item) for _item in obj.get("lines")] if obj.get("lines") is not None else None
122
+ })
123
+ return _obj
124
+
125
+
@@ -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.2.0
8
+ The version of the OpenAPI document: 1.3.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.2.0
8
+ The version of the OpenAPI document: 1.3.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.2.0
8
+ The version of the OpenAPI document: 1.3.0
9
9
  Contact: admin@collegefootballdata.com
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -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.3.0
9
+ Contact: admin@collegefootballdata.com
10
+ Generated by OpenAPI Generator (https://openapi-generator.tech)
11
+
12
+ Do not edit the class manually.
13
+ """ # noqa: E501
14
+
15
+
16
+ from __future__ import annotations
17
+ import pprint
18
+ import re # noqa: F401
19
+ import json
20
+
21
+
22
+
23
+ from pydantic import BaseModel, Field, StrictInt, StrictStr
24
+
25
+ class LineProviderInfo(BaseModel):
26
+ """
27
+ LineProviderInfo
28
+ """
29
+ id: StrictInt = Field(...)
30
+ name: StrictStr = Field(...)
31
+ __properties = ["id", "name"]
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) -> LineProviderInfo:
48
+ """Create an instance of LineProviderInfo 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) -> LineProviderInfo:
61
+ """Create an instance of LineProviderInfo from a dict"""
62
+ if obj is None:
63
+ return None
64
+
65
+ if not isinstance(obj, dict):
66
+ return LineProviderInfo.parse_obj(obj)
67
+
68
+ _obj = LineProviderInfo.parse_obj({
69
+ "id": obj.get("id"),
70
+ "name": obj.get("name")
71
+ })
72
+ return _obj
73
+
74
+
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.2.0
8
+ The version of the OpenAPI document: 1.3.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.2.0
8
+ The version of the OpenAPI document: 1.3.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.2.0
8
+ The version of the OpenAPI document: 1.3.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.2.0
8
+ The version of the OpenAPI document: 1.3.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.2.0
8
+ The version of the OpenAPI document: 1.3.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.2.0
8
+ The version of the OpenAPI document: 1.3.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.2.0
8
+ The version of the OpenAPI document: 1.3.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.2.0
8
+ The version of the OpenAPI document: 1.3.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.2.0
8
+ The version of the OpenAPI document: 1.3.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.2.0
8
+ The version of the OpenAPI document: 1.3.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.2.0
8
+ The version of the OpenAPI document: 1.3.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.2.0
8
+ The version of the OpenAPI document: 1.3.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.2.0
8
+ The version of the OpenAPI document: 1.3.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.2.0
8
+ The version of the OpenAPI document: 1.3.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.2.0
8
+ The version of the OpenAPI document: 1.3.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.2.0
8
+ The version of the OpenAPI document: 1.3.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.2.0
8
+ The version of the OpenAPI document: 1.3.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.2.0
8
+ The version of the OpenAPI document: 1.3.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.2.0
8
+ The version of the OpenAPI document: 1.3.0
9
9
  Contact: admin@collegefootballdata.com
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: cbbd
3
- Version: 1.2.0
3
+ Version: 1.3.0
4
4
  Summary: College Basketball Data API
5
5
  Home-page: https://github.com/CFBD/cbbd-python
6
6
  Author-email: admin@collegefootballdata.com
@@ -0,0 +1,53 @@
1
+ cbbd/__init__.py,sha256=gAw59tpDBNRiUjCIdWs_vEAwIBj1TvA2xOVIL5Xlwm4,3388
2
+ cbbd/api_client.py,sha256=Vkh_0hdxoo8c0TSGk_lvAqkmiDK8m1iCyvkR5XE193s,29894
3
+ cbbd/api_response.py,sha256=uCehWdXXDnAO2HAHGKe0SgpQ_mJiGDbcu-BHDF3n_IM,852
4
+ cbbd/configuration.py,sha256=gkzRnwo_W9_1GcNlT-_VvcC8n1aWZez7hMXeT0qkJBo,14796
5
+ cbbd/exceptions.py,sha256=DcLtW5xcLB3DiTo_6_FnwpfnELbnrL7QWl8XV8WlkFk,5545
6
+ cbbd/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
7
+ cbbd/rest.py,sha256=DDJLNqrmRCnd0yb7e5uktQbpO1QFreteeGW98jaojBI,14162
8
+ cbbd/api/__init__.py,sha256=8SGJTI60wSVBcog5RT6KD2dMvtpwlU2_3NXC6h24FP8,342
9
+ cbbd/api/conferences_api.py,sha256=og96RiueUNFJfox6q5-HKp8hHxErQRUFnDsu_WQM8FU,13078
10
+ cbbd/api/games_api.py,sha256=9uIKwx60yIxjGJTRg2maTOTjHI57yePbS8Y7HIgsPnc,41194
11
+ cbbd/api/lines_api.py,sha256=6Maaq1AG8rUSKrbtVq5o0q4PkCa7ydR3e0-z-cDLWNc,15756
12
+ cbbd/api/plays_api.py,sha256=C05KomM7upMBsdxs2loLk9oelGTUxIBsFwACz6dB9_U,32183
13
+ cbbd/api/stats_api.py,sha256=ftSX-JVsBiu44Vgy4rgS-foOqoYSLySjClZsgfwXKew,20182
14
+ cbbd/api/teams_api.py,sha256=qALbmR9qtuo0hYWADAbxmu0CkAW5gOu-JsUnbL-p5LQ,14207
15
+ cbbd/api/venues_api.py,sha256=QuLEg7eAruVRe8WIlrNP7BYBtBPQYQoxrVKt05rvnz4,6567
16
+ cbbd/models/__init__.py,sha256=1LMsJlnvImy_HgtukT_rik1UtxVoL7mP80LPhP6eo2Q,2640
17
+ cbbd/models/conference_history.py,sha256=T9jkRsvnD170F0mudsDPdvrL3tvFh0VS20mu2fZxo6E,3083
18
+ cbbd/models/conference_history_teams_inner.py,sha256=dhVcq6vkuhz2hCQRdti4Vb6lZhM_MPITlv5XkRgdKro,3129
19
+ cbbd/models/conference_info.py,sha256=sCOLmsb38VqahmK4ZwAOKiWg4tBpLp_XCgAjfyJzkgw,2436
20
+ cbbd/models/game_box_score_players.py,sha256=TIzj5gc3KSZoC-rh1UK2KkUSSn_nhFe2WZhb8wiAAo4,6355
21
+ cbbd/models/game_box_score_players_players_inner.py,sha256=UEKxuv1Y_ahMbR_7ssjvDaCxC1IyDHF-Q88964oVy7Q,12092
22
+ cbbd/models/game_box_score_team.py,sha256=OvS_oJH1Jn_S3YkyiqZ29j5DKCV4L6qVbt7M3trcdiw,6386
23
+ cbbd/models/game_box_score_team_stats.py,sha256=w2Jt9NYmJNaZMlrUkOimup9mHA_aOiEHo9glTBQ3dbw,8686
24
+ cbbd/models/game_box_score_team_stats_points.py,sha256=jJMmMUoiEC0uALRNz_sVEvXZR4D3Cj3N0uv43ip2ip0,4297
25
+ cbbd/models/game_info.py,sha256=vUVx_J4J88qvrZjlP5XCVoL2AMt9qPVOQtehyY7adus,9614
26
+ cbbd/models/game_line_info.py,sha256=VzOhqgQ7_hrKj1_MonVQjY9TeMeoeT3L_fLHoLpYOeQ,4370
27
+ cbbd/models/game_lines.py,sha256=ofs1hslhuATsy2l-hBD4_Xj8Ri4QcSeXaMaSZ7YfURg,5076
28
+ cbbd/models/game_media_info.py,sha256=VxoBnDMEK_d1h1a3XGy7Rp04S7SrFSB0c0nAoPTRSpI,5671
29
+ cbbd/models/game_media_info_broadcasts_inner.py,sha256=lmS2K9VdgiZPPktKQV2u5xrd5h6HESM7_frDXcKHPjE,2324
30
+ cbbd/models/game_status.py,sha256=Qi1Hr-TblpPjKGLmf_lXGrbdoTB4G_LMMI2ik-QzF2U,948
31
+ cbbd/models/line_provider_info.py,sha256=ivCu4EdULpztd-6c4z8SzrWd6LsS1tbIgUlgs6FYiGQ,2093
32
+ cbbd/models/play_info.py,sha256=VYul_KKiaKz3xr7yXg8c1RcjG1NcGAO4UOR4LJPaNe4,8576
33
+ cbbd/models/play_info_participants_inner.py,sha256=ydLtEVE2HvRpOBprQUVXIMeHndebwJQdQyQxesUvJbQ,2165
34
+ cbbd/models/play_type_info.py,sha256=2dZJe6GNe9Smwcc8Uj7xPLAOHmA8uUoyB659szeMHTo,2061
35
+ cbbd/models/player_season_stats.py,sha256=9oxtO1UbT5HLkAHIyISidBF_OT-MVPLYQK3SDld-Bz8,11712
36
+ cbbd/models/season_type.py,sha256=Z7rSDsUWuxUtpQJxjZ7_N94PXumIkkBX3_l3MHZ1rjM,894
37
+ cbbd/models/team_info.py,sha256=FDnD7Kb6g3RpHYjUs9tH-SVzY1C8gwulwnuQk90K5UM,6665
38
+ cbbd/models/team_roster.py,sha256=W6AvzLlmt0EDICdx18caHSciSYWOBphbp5lbs-skwI8,3294
39
+ cbbd/models/team_roster_player.py,sha256=F8i-IZ6RU3f1jIEbGIjm0w2gJPlThQC3YaO3Lnruzqo,5353
40
+ cbbd/models/team_roster_player_hometown.py,sha256=Tfo2xzf5UGN2S5UMXvJHqZwaU5b-Cg0TApKNUN8yIOk,2906
41
+ cbbd/models/team_season_stats.py,sha256=qI_azBM6z62YgT-vyOpMYatNiHmdxWeuMWLzlCwtq2Q,4262
42
+ cbbd/models/team_season_unit_stats.py,sha256=4YrekuWjkMIcyGDDjWdg80XUMl48fptfHuDc_Ad3p4k,8286
43
+ cbbd/models/team_season_unit_stats_field_goals.py,sha256=OnbuRorVl2Tv7S2iJTj6szXPTFsXnRtLQJbW9Ru761M,3026
44
+ cbbd/models/team_season_unit_stats_fouls.py,sha256=6hoij8elGTcAneZ5FXe7M8iYhtkc5iszVsO_IGtUOJw,3034
45
+ cbbd/models/team_season_unit_stats_four_factors.py,sha256=DaVWq1U2gNNFdGCMAQsUHHGGwfuvCQIxfvhTEW4waZQ,3883
46
+ cbbd/models/team_season_unit_stats_points.py,sha256=31pdVnWIGod-8ZedanBqZOPyUV0rER7lLPIgxJXb4YA,3498
47
+ cbbd/models/team_season_unit_stats_rebounds.py,sha256=pcJAqZ_HQ_EkUfS7Os_Mkq--7mDztXas61JJfmruEgA,3066
48
+ cbbd/models/team_season_unit_stats_turnovers.py,sha256=M2wKG0gBrc-YepRybfmLhvnzGj0tNzigIc_sYPIN1xs,2763
49
+ cbbd/models/venue_info.py,sha256=U70yqZVrYy-bY1ibQ5UItITCITHhaa4jlksE9JLi1Tw,3331
50
+ cbbd-1.3.0.dist-info/METADATA,sha256=Kg6za3f1s7ovLmj3tReiQmcK4548w8N3Ennm4u4vw2Y,763
51
+ cbbd-1.3.0.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
52
+ cbbd-1.3.0.dist-info/top_level.txt,sha256=d8efSEMxRPpV_X-2jtQvf9S-EI4HoFQpCEOZCjDxT24,5
53
+ cbbd-1.3.0.dist-info/RECORD,,