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

Sign up to get free protection for your applications and to get access to all the features.
Files changed (47) hide show
  1. cbbd/__init__.py +7 -2
  2. cbbd/api/conferences_api.py +146 -2
  3. cbbd/api/games_api.py +1 -1
  4. cbbd/api/plays_api.py +1 -1
  5. cbbd/api/stats_api.py +1 -1
  6. cbbd/api/teams_api.py +150 -1
  7. cbbd/api/venues_api.py +1 -1
  8. cbbd/api_client.py +2 -2
  9. cbbd/configuration.py +3 -3
  10. cbbd/exceptions.py +1 -1
  11. cbbd/models/__init__.py +6 -1
  12. cbbd/models/conference_history.py +90 -0
  13. cbbd/models/conference_history_teams_inner.py +92 -0
  14. cbbd/models/conference_info.py +1 -1
  15. cbbd/models/game_box_score_players.py +1 -1
  16. cbbd/models/game_box_score_players_players_inner.py +1 -1
  17. cbbd/models/game_box_score_team.py +1 -1
  18. cbbd/models/game_box_score_team_stats.py +1 -1
  19. cbbd/models/game_box_score_team_stats_points.py +1 -1
  20. cbbd/models/game_info.py +1 -1
  21. cbbd/models/game_media_info.py +1 -1
  22. cbbd/models/game_media_info_broadcasts_inner.py +1 -1
  23. cbbd/models/game_status.py +1 -1
  24. cbbd/models/play_info.py +1 -1
  25. cbbd/models/play_info_participants_inner.py +1 -1
  26. cbbd/models/play_type_info.py +1 -1
  27. cbbd/models/player_season_stats.py +1 -1
  28. cbbd/models/season_type.py +1 -1
  29. cbbd/models/team_info.py +1 -1
  30. cbbd/models/team_roster.py +95 -0
  31. cbbd/models/team_roster_player.py +135 -0
  32. cbbd/models/team_roster_player_hometown.py +91 -0
  33. cbbd/models/team_season_stats.py +1 -1
  34. cbbd/models/team_season_unit_stats.py +1 -1
  35. cbbd/models/team_season_unit_stats_field_goals.py +1 -1
  36. cbbd/models/team_season_unit_stats_fouls.py +1 -1
  37. cbbd/models/team_season_unit_stats_four_factors.py +1 -1
  38. cbbd/models/team_season_unit_stats_points.py +1 -1
  39. cbbd/models/team_season_unit_stats_rebounds.py +1 -1
  40. cbbd/models/team_season_unit_stats_turnovers.py +1 -1
  41. cbbd/models/venue_info.py +1 -1
  42. cbbd/rest.py +1 -1
  43. {cbbd-1.1.3.dist-info → cbbd-1.2.0.dist-info}/METADATA +1 -1
  44. cbbd-1.2.0.dist-info/RECORD +49 -0
  45. cbbd-1.1.3.dist-info/RECORD +0 -44
  46. {cbbd-1.1.3.dist-info → cbbd-1.2.0.dist-info}/WHEEL +0 -0
  47. {cbbd-1.1.3.dist-info → cbbd-1.2.0.dist-info}/top_level.txt +0 -0
@@ -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.1.3
8
+ The version of the OpenAPI document: 1.2.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.1.3
8
+ The version of the OpenAPI document: 1.2.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.1.3
8
+ The version of the OpenAPI document: 1.2.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.1.3
8
+ The version of the OpenAPI document: 1.2.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.1.3
8
+ The version of the OpenAPI document: 1.2.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.1.3
8
+ The version of the OpenAPI document: 1.2.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.1.3
8
+ The version of the OpenAPI document: 1.2.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.1.3
8
+ The version of the OpenAPI document: 1.2.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.1.3
8
+ The version of the OpenAPI document: 1.2.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.1.3
8
+ The version of the OpenAPI document: 1.2.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.1.3
8
+ The version of the OpenAPI document: 1.2.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.1.3
8
+ The version of the OpenAPI document: 1.2.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.1.3
8
+ The version of the OpenAPI document: 1.2.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.1.3
8
+ The version of the OpenAPI document: 1.2.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.1.3
8
+ The version of the OpenAPI document: 1.2.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.1.3
8
+ The version of the OpenAPI document: 1.2.0
9
9
  Contact: admin@collegefootballdata.com
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -0,0 +1,95 @@
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.2.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 List, Optional, Union
23
+ from pydantic import BaseModel, Field, StrictFloat, StrictInt, StrictStr, conlist
24
+ from cbbd.models.team_roster_player import TeamRosterPlayer
25
+
26
+ class TeamRoster(BaseModel):
27
+ """
28
+ TeamRoster
29
+ """
30
+ team_id: StrictInt = Field(default=..., alias="teamId")
31
+ team_source_id: StrictStr = Field(default=..., alias="teamSourceId")
32
+ team: StrictStr = Field(...)
33
+ conference: Optional[StrictStr] = Field(...)
34
+ season: Union[StrictFloat, StrictInt] = Field(...)
35
+ players: conlist(TeamRosterPlayer) = Field(...)
36
+ __properties = ["teamId", "teamSourceId", "team", "conference", "season", "players"]
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) -> TeamRoster:
53
+ """Create an instance of TeamRoster 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
+ # override the default output from pydantic by calling `to_dict()` of each item in players (list)
63
+ _items = []
64
+ if self.players:
65
+ for _item in self.players:
66
+ if _item:
67
+ _items.append(_item.to_dict())
68
+ _dict['players'] = _items
69
+ # set to None if conference (nullable) is None
70
+ # and __fields_set__ contains the field
71
+ if self.conference is None and "conference" in self.__fields_set__:
72
+ _dict['conference'] = None
73
+
74
+ return _dict
75
+
76
+ @classmethod
77
+ def from_dict(cls, obj: dict) -> TeamRoster:
78
+ """Create an instance of TeamRoster from a dict"""
79
+ if obj is None:
80
+ return None
81
+
82
+ if not isinstance(obj, dict):
83
+ return TeamRoster.parse_obj(obj)
84
+
85
+ _obj = TeamRoster.parse_obj({
86
+ "team_id": obj.get("teamId"),
87
+ "team_source_id": obj.get("teamSourceId"),
88
+ "team": obj.get("team"),
89
+ "conference": obj.get("conference"),
90
+ "season": obj.get("season"),
91
+ "players": [TeamRosterPlayer.from_dict(_item) for _item in obj.get("players")] if obj.get("players") is not None else None
92
+ })
93
+ return _obj
94
+
95
+
@@ -0,0 +1,135 @@
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.2.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 date
22
+ from typing import Optional, Union
23
+ from pydantic import BaseModel, Field, StrictFloat, StrictInt, StrictStr
24
+ from cbbd.models.team_roster_player_hometown import TeamRosterPlayerHometown
25
+
26
+ class TeamRosterPlayer(BaseModel):
27
+ """
28
+ TeamRosterPlayer
29
+ """
30
+ id: StrictInt = Field(...)
31
+ source_id: StrictStr = Field(default=..., alias="sourceId")
32
+ name: StrictStr = Field(...)
33
+ first_name: Optional[StrictStr] = Field(default=..., alias="firstName")
34
+ last_name: Optional[StrictStr] = Field(default=..., alias="lastName")
35
+ jersey: Optional[StrictStr] = Field(...)
36
+ position: Optional[StrictStr] = Field(...)
37
+ height: Optional[Union[StrictFloat, StrictInt]] = Field(...)
38
+ weight: Optional[Union[StrictFloat, StrictInt]] = Field(...)
39
+ hometown: TeamRosterPlayerHometown = Field(...)
40
+ date_of_birth: Optional[date] = Field(default=..., alias="dateOfBirth")
41
+ start_season: Union[StrictFloat, StrictInt] = Field(default=..., alias="startSeason")
42
+ end_season: Union[StrictFloat, StrictInt] = Field(default=..., alias="endSeason")
43
+ __properties = ["id", "sourceId", "name", "firstName", "lastName", "jersey", "position", "height", "weight", "hometown", "dateOfBirth", "startSeason", "endSeason"]
44
+
45
+ class Config:
46
+ """Pydantic configuration"""
47
+ allow_population_by_field_name = True
48
+ validate_assignment = True
49
+
50
+ def to_str(self) -> str:
51
+ """Returns the string representation of the model using alias"""
52
+ return pprint.pformat(self.dict(by_alias=True))
53
+
54
+ def to_json(self) -> str:
55
+ """Returns the JSON representation of the model using alias"""
56
+ return json.dumps(self.to_dict())
57
+
58
+ @classmethod
59
+ def from_json(cls, json_str: str) -> TeamRosterPlayer:
60
+ """Create an instance of TeamRosterPlayer from a JSON string"""
61
+ return cls.from_dict(json.loads(json_str))
62
+
63
+ def to_dict(self):
64
+ """Returns the dictionary representation of the model using alias"""
65
+ _dict = self.dict(by_alias=True,
66
+ exclude={
67
+ },
68
+ exclude_none=True)
69
+ # override the default output from pydantic by calling `to_dict()` of hometown
70
+ if self.hometown:
71
+ _dict['hometown'] = self.hometown.to_dict()
72
+ # set to None if first_name (nullable) is None
73
+ # and __fields_set__ contains the field
74
+ if self.first_name is None and "first_name" in self.__fields_set__:
75
+ _dict['firstName'] = None
76
+
77
+ # set to None if last_name (nullable) is None
78
+ # and __fields_set__ contains the field
79
+ if self.last_name is None and "last_name" in self.__fields_set__:
80
+ _dict['lastName'] = None
81
+
82
+ # set to None if jersey (nullable) is None
83
+ # and __fields_set__ contains the field
84
+ if self.jersey is None and "jersey" in self.__fields_set__:
85
+ _dict['jersey'] = None
86
+
87
+ # set to None if position (nullable) is None
88
+ # and __fields_set__ contains the field
89
+ if self.position is None and "position" in self.__fields_set__:
90
+ _dict['position'] = None
91
+
92
+ # set to None if height (nullable) is None
93
+ # and __fields_set__ contains the field
94
+ if self.height is None and "height" in self.__fields_set__:
95
+ _dict['height'] = None
96
+
97
+ # set to None if weight (nullable) is None
98
+ # and __fields_set__ contains the field
99
+ if self.weight is None and "weight" in self.__fields_set__:
100
+ _dict['weight'] = None
101
+
102
+ # set to None if date_of_birth (nullable) is None
103
+ # and __fields_set__ contains the field
104
+ if self.date_of_birth is None and "date_of_birth" in self.__fields_set__:
105
+ _dict['dateOfBirth'] = None
106
+
107
+ return _dict
108
+
109
+ @classmethod
110
+ def from_dict(cls, obj: dict) -> TeamRosterPlayer:
111
+ """Create an instance of TeamRosterPlayer from a dict"""
112
+ if obj is None:
113
+ return None
114
+
115
+ if not isinstance(obj, dict):
116
+ return TeamRosterPlayer.parse_obj(obj)
117
+
118
+ _obj = TeamRosterPlayer.parse_obj({
119
+ "id": obj.get("id"),
120
+ "source_id": obj.get("sourceId"),
121
+ "name": obj.get("name"),
122
+ "first_name": obj.get("firstName"),
123
+ "last_name": obj.get("lastName"),
124
+ "jersey": obj.get("jersey"),
125
+ "position": obj.get("position"),
126
+ "height": obj.get("height"),
127
+ "weight": obj.get("weight"),
128
+ "hometown": TeamRosterPlayerHometown.from_dict(obj.get("hometown")) if obj.get("hometown") is not None else None,
129
+ "date_of_birth": obj.get("dateOfBirth"),
130
+ "start_season": obj.get("startSeason"),
131
+ "end_season": obj.get("endSeason")
132
+ })
133
+ return _obj
134
+
135
+
@@ -0,0 +1,91 @@
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.2.0
9
+ Contact: admin@collegefootballdata.com
10
+ Generated by OpenAPI Generator (https://openapi-generator.tech)
11
+
12
+ Do not edit the class manually.
13
+ """ # noqa: E501
14
+
15
+
16
+ from __future__ import annotations
17
+ import pprint
18
+ import re # noqa: F401
19
+ import json
20
+
21
+
22
+ from typing import Optional
23
+ from pydantic import BaseModel, Field, StrictStr
24
+
25
+ class TeamRosterPlayerHometown(BaseModel):
26
+ """
27
+ TeamRosterPlayerHometown
28
+ """
29
+ country: Optional[StrictStr] = Field(...)
30
+ state: Optional[StrictStr] = Field(...)
31
+ city: Optional[StrictStr] = Field(...)
32
+ __properties = ["country", "state", "city"]
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) -> TeamRosterPlayerHometown:
49
+ """Create an instance of TeamRosterPlayerHometown 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
+ # set to None if country (nullable) is None
59
+ # and __fields_set__ contains the field
60
+ if self.country is None and "country" in self.__fields_set__:
61
+ _dict['country'] = None
62
+
63
+ # set to None if state (nullable) is None
64
+ # and __fields_set__ contains the field
65
+ if self.state is None and "state" in self.__fields_set__:
66
+ _dict['state'] = None
67
+
68
+ # set to None if city (nullable) is None
69
+ # and __fields_set__ contains the field
70
+ if self.city is None and "city" in self.__fields_set__:
71
+ _dict['city'] = None
72
+
73
+ return _dict
74
+
75
+ @classmethod
76
+ def from_dict(cls, obj: dict) -> TeamRosterPlayerHometown:
77
+ """Create an instance of TeamRosterPlayerHometown from a dict"""
78
+ if obj is None:
79
+ return None
80
+
81
+ if not isinstance(obj, dict):
82
+ return TeamRosterPlayerHometown.parse_obj(obj)
83
+
84
+ _obj = TeamRosterPlayerHometown.parse_obj({
85
+ "country": obj.get("country"),
86
+ "state": obj.get("state"),
87
+ "city": obj.get("city")
88
+ })
89
+ return _obj
90
+
91
+
@@ -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.1.3
8
+ The version of the OpenAPI document: 1.2.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.1.3
8
+ The version of the OpenAPI document: 1.2.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.1.3
8
+ The version of the OpenAPI document: 1.2.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.1.3
8
+ The version of the OpenAPI document: 1.2.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.1.3
8
+ The version of the OpenAPI document: 1.2.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.1.3
8
+ The version of the OpenAPI document: 1.2.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.1.3
8
+ The version of the OpenAPI document: 1.2.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.1.3
8
+ The version of the OpenAPI document: 1.2.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.1.3
8
+ The version of the OpenAPI document: 1.2.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.1.3
8
+ The version of the OpenAPI document: 1.2.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.1.3
3
+ Version: 1.2.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,49 @@
1
+ cbbd/__init__.py,sha256=d8eEE6-2jh6WCj9vpuIHUPjollzfJ2axmYOWmAzRWXM,3191
2
+ cbbd/api_client.py,sha256=W_TGLBmMXLJlh7PzqSBf6YM4pdp3--kFBKOwUAElCmE,29894
3
+ cbbd/api_response.py,sha256=uCehWdXXDnAO2HAHGKe0SgpQ_mJiGDbcu-BHDF3n_IM,852
4
+ cbbd/configuration.py,sha256=6daHSVKZFI8fQMRUA0KSjejDZQCnPOgnBpGKhBtsaOw,14796
5
+ cbbd/exceptions.py,sha256=D82pYoMvivMQGq1MFR2sdQ_tpOgNTtWeu_sIyJegwZY,5545
6
+ cbbd/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
7
+ cbbd/rest.py,sha256=Uu3xUPE8hX0f08TN0gi_mrtXWF7-ENWTpuBuGGoFemQ,14162
8
+ cbbd/api/__init__.py,sha256=nv4S_F40ZH9NiWNrm5nu1G3DU1JD9dVdF6aOwzonSO4,302
9
+ cbbd/api/conferences_api.py,sha256=FKzYhYIhuYnxNsCWHAPPgUZ9ixN1SB4X4SBY3BidVOY,13078
10
+ cbbd/api/games_api.py,sha256=SmJ-ugDmEJatUp7napSljGR0CzhlY6LSzz_Ux7u1x7s,41194
11
+ cbbd/api/plays_api.py,sha256=xbdgynUPaU-QGP0yBC_zAY4FJTvigHJ_nT82Zwk0XXA,32183
12
+ cbbd/api/stats_api.py,sha256=jSCr5sF9tU2JFGJwZ85hn6V8QVgS7uwbt_gPppIb1q0,20182
13
+ cbbd/api/teams_api.py,sha256=0W40qT1Z-wFffjY5lWhssNMHuULkCSMFD4sbGKZpUIg,14207
14
+ cbbd/api/venues_api.py,sha256=70oEAnEUbBkXAJuEVOrZ4QwlE70hT_v3V1AIlLwQzxU,6567
15
+ cbbd/models/__init__.py,sha256=gyYwEhihJwQKK29ETDK9QOkxrl1wqb-JQuhXXn7ejEE,2483
16
+ cbbd/models/conference_history.py,sha256=_F71KpUKLIA4ta6GJ8Ept49c7CPYD7AsZQlH76G9g6Q,3083
17
+ cbbd/models/conference_history_teams_inner.py,sha256=Bo3sqOWcvH6Km9JlpG1BphgGVf4A2qTcWxKTt-ABKSc,3129
18
+ cbbd/models/conference_info.py,sha256=YoBzT7EPOzZpIfs40eunUOsZHy6TNYmlV2Dg9hod2gA,2436
19
+ cbbd/models/game_box_score_players.py,sha256=IUUpob8eu3zsLCoH-sxIozfjsBmpqcfpNVWnMeNteK8,6355
20
+ cbbd/models/game_box_score_players_players_inner.py,sha256=PLAAo3iZRdEQEew_VITmZlNeoC4OvUJUjglVtP_YeGY,12092
21
+ cbbd/models/game_box_score_team.py,sha256=hw2pA91xfL-5Th5a609aOFWFThlRr8qKpKh4T-wVwrw,6386
22
+ cbbd/models/game_box_score_team_stats.py,sha256=DJz5MHGN52mTEwtcujASLlozpmyiYV7UtL1NARwiLUc,8686
23
+ cbbd/models/game_box_score_team_stats_points.py,sha256=AWQqVx2cLX5lUJ2GNHNk-pkn-n4O4a-JD1ZzqKu2fLQ,4297
24
+ cbbd/models/game_info.py,sha256=0nj0V3XQhw0lCf_ySQd4bTbEBodc_6I6oLB3mgbzuAY,9614
25
+ cbbd/models/game_media_info.py,sha256=CcV5y5nj03e6XMYF_8wqqMC-tyzQ0bZcTUkmgknArFo,5671
26
+ cbbd/models/game_media_info_broadcasts_inner.py,sha256=h_wdDzoLXPuFVCEsCCHwXGA0pcS80bew2wSnTMAO6rs,2324
27
+ cbbd/models/game_status.py,sha256=9IGmR8IsD86WkdeELpi5vlpA7YQvRgyX_FHWHtDDOzY,948
28
+ cbbd/models/play_info.py,sha256=DWXEsBgi2igTre-S6Iwi8yTC2xc2wBEUM9d1ax4Hp_I,8576
29
+ cbbd/models/play_info_participants_inner.py,sha256=g3uwTuALXhLNiXrPWla_QxV3MJ-UEr-f4LsYw8faf1k,2165
30
+ cbbd/models/play_type_info.py,sha256=g4Ce6wG-x4z13WwZlZsyTQ3H-lOLncMN9oFSoioFS-c,2061
31
+ cbbd/models/player_season_stats.py,sha256=8bwqqqRu-biFrpM5tIv1AaUl9OxeBfekYzGoP4-pxtA,11712
32
+ cbbd/models/season_type.py,sha256=NKIJWj0zymlkOx_uvrvNHXjYyUCVApYKLkagXrqtsUk,894
33
+ cbbd/models/team_info.py,sha256=qL3ool8kvYi7u8UE9-74_c-WI6OfPucn3fIcLoNTkXg,6665
34
+ cbbd/models/team_roster.py,sha256=FDDqHjPtPOEDzwuVEy-PPv22GqBTXJWeb0rFiMZNTnU,3294
35
+ cbbd/models/team_roster_player.py,sha256=hs36JAtBLjxpK2WomjlAvBDqLgyCg2eyUWBxz9WiNi0,5353
36
+ cbbd/models/team_roster_player_hometown.py,sha256=KOYe8EHo4QsmaRa7sibp061ydxFT_VRvYGGTXp_Qr44,2906
37
+ cbbd/models/team_season_stats.py,sha256=rNSb83RhQsXzZuni0YT5i4cz74owjIHGTCkKjd6SUIY,4262
38
+ cbbd/models/team_season_unit_stats.py,sha256=B0335NuH5zGIQFjDzL6sHNUP1L3Bx8rxSQarQ-DY16Q,8286
39
+ cbbd/models/team_season_unit_stats_field_goals.py,sha256=p8cj3zEs3JET9YCHYA5nBMxl1n32zL0YEL86_qua6WQ,3026
40
+ cbbd/models/team_season_unit_stats_fouls.py,sha256=pO5TClfcr6huvh_0QMz9LKtA0osWB15e7EGzYEqa6iM,3034
41
+ cbbd/models/team_season_unit_stats_four_factors.py,sha256=ZJItdtAEmsAnZZoBKc9oa3iOpTmxR99lz5R1efXKCxo,3883
42
+ cbbd/models/team_season_unit_stats_points.py,sha256=KZm4Qy7BNHP4fv_EbIx84KaYWb5sR9GD6CJ11NJUjEk,3498
43
+ cbbd/models/team_season_unit_stats_rebounds.py,sha256=jZvyiF-pDX69fZnyuWFnJcsUw4scgYHwFaXA7ll1PpQ,3066
44
+ cbbd/models/team_season_unit_stats_turnovers.py,sha256=YuRXOHOqgtIYohEeczipDnLNDaMFps2qpFRr0BS1yYI,2763
45
+ cbbd/models/venue_info.py,sha256=48rwRMFRhHwUi_t1YgBdWDMVhiF9ABAfudZ3m6vpOzg,3331
46
+ cbbd-1.2.0.dist-info/METADATA,sha256=YzzTnuuKYqOEaDTurVniohxZ-4qYiAEwODLNVHSrTLM,763
47
+ cbbd-1.2.0.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
48
+ cbbd-1.2.0.dist-info/top_level.txt,sha256=d8efSEMxRPpV_X-2jtQvf9S-EI4HoFQpCEOZCjDxT24,5
49
+ cbbd-1.2.0.dist-info/RECORD,,