cbbd 1.1.2__py3-none-any.whl → 1.1.3__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/plays_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/conference_info.py +1 -1
- cbbd/models/game_box_score_players.py +1 -1
- cbbd/models/game_box_score_players_players_inner.py +1 -1
- cbbd/models/game_box_score_team.py +1 -1
- cbbd/models/game_box_score_team_stats.py +1 -1
- cbbd/models/game_box_score_team_stats_points.py +1 -1
- cbbd/models/game_info.py +1 -1
- cbbd/models/game_media_info.py +1 -1
- cbbd/models/game_media_info_broadcasts_inner.py +1 -1
- cbbd/models/game_status.py +1 -1
- cbbd/models/play_info.py +1 -1
- cbbd/models/play_info_participants_inner.py +1 -1
- cbbd/models/play_type_info.py +1 -1
- cbbd/models/player_season_stats.py +1 -1
- cbbd/models/season_type.py +1 -1
- cbbd/models/team_info.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.1.2.dist-info → cbbd-1.1.3.dist-info}/METADATA +1 -1
- cbbd-1.1.3.dist-info/RECORD +44 -0
- cbbd-1.1.2.dist-info/RECORD +0 -44
- {cbbd-1.1.2.dist-info → cbbd-1.1.3.dist-info}/WHEEL +0 -0
- {cbbd-1.1.2.dist-info → cbbd-1.1.3.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.1.
|
10
|
+
The version of the OpenAPI document: 1.1.3
|
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.1.
|
18
|
+
__version__ = "1.1.3"
|
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.1.
|
8
|
+
The version of the OpenAPI document: 1.1.3
|
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.1.
|
8
|
+
The version of the OpenAPI document: 1.1.3
|
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.1.
|
8
|
+
The version of the OpenAPI document: 1.1.3
|
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.1.
|
8
|
+
The version of the OpenAPI document: 1.1.3
|
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.1.
|
8
|
+
The version of the OpenAPI document: 1.1.3
|
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.1.
|
8
|
+
The version of the OpenAPI document: 1.1.3
|
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.1.
|
8
|
+
The version of the OpenAPI document: 1.1.3
|
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.1.
|
81
|
+
self.user_agent = 'OpenAPI-Generator/1.1.3/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.1.
|
8
|
+
The version of the OpenAPI document: 1.1.3
|
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.1.
|
380
|
-
"SDK Package Version: 1.1.
|
379
|
+
"Version of the API: 1.1.3\n"\
|
380
|
+
"SDK Package Version: 1.1.3".\
|
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.1.
|
8
|
+
The version of the OpenAPI document: 1.1.3
|
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.1.
|
9
|
+
The version of the OpenAPI document: 1.1.3
|
10
10
|
Contact: admin@collegefootballdata.com
|
11
11
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
12
12
|
|
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.1.
|
8
|
+
The version of the OpenAPI document: 1.1.3
|
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.
|
8
|
+
The version of the OpenAPI document: 1.1.3
|
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.
|
8
|
+
The version of the OpenAPI document: 1.1.3
|
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.
|
8
|
+
The version of the OpenAPI document: 1.1.3
|
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.
|
8
|
+
The version of the OpenAPI document: 1.1.3
|
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.
|
8
|
+
The version of the OpenAPI document: 1.1.3
|
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.
|
8
|
+
The version of the OpenAPI document: 1.1.3
|
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.1.
|
8
|
+
The version of the OpenAPI document: 1.1.3
|
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.
|
8
|
+
The version of the OpenAPI document: 1.1.3
|
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.1.
|
8
|
+
The version of the OpenAPI document: 1.1.3
|
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.
|
8
|
+
The version of the OpenAPI document: 1.1.3
|
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.
|
8
|
+
The version of the OpenAPI document: 1.1.3
|
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.1.
|
8
|
+
The version of the OpenAPI document: 1.1.3
|
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.
|
8
|
+
The version of the OpenAPI document: 1.1.3
|
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.1.
|
8
|
+
The version of the OpenAPI document: 1.1.3
|
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.
|
8
|
+
The version of the OpenAPI document: 1.1.3
|
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.1.
|
8
|
+
The version of the OpenAPI document: 1.1.3
|
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.
|
8
|
+
The version of the OpenAPI document: 1.1.3
|
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.
|
8
|
+
The version of the OpenAPI document: 1.1.3
|
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.
|
8
|
+
The version of the OpenAPI document: 1.1.3
|
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.
|
8
|
+
The version of the OpenAPI document: 1.1.3
|
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.
|
8
|
+
The version of the OpenAPI document: 1.1.3
|
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.
|
8
|
+
The version of the OpenAPI document: 1.1.3
|
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.
|
8
|
+
The version of the OpenAPI document: 1.1.3
|
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.
|
8
|
+
The version of the OpenAPI document: 1.1.3
|
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.
|
8
|
+
The version of the OpenAPI document: 1.1.3
|
9
9
|
Contact: admin@collegefootballdata.com
|
10
10
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
11
11
|
|
@@ -0,0 +1,44 @@
|
|
1
|
+
cbbd/__init__.py,sha256=AAO-PDls9FGT0WrjNuatnXrPOCqKWAtFv2NTKdSP1Qw,2863
|
2
|
+
cbbd/api_client.py,sha256=EeepQPWH_gjLJQi3Gc3WNnKjjQcpO8Fb-51pNWfYSKo,29894
|
3
|
+
cbbd/api_response.py,sha256=uCehWdXXDnAO2HAHGKe0SgpQ_mJiGDbcu-BHDF3n_IM,852
|
4
|
+
cbbd/configuration.py,sha256=WCuChFj0N1lA7DA7sbtCRI6_bYJjrRq4CF06NyGP3Gc,14796
|
5
|
+
cbbd/exceptions.py,sha256=wmvuc1ZZGEvn8WgCbqnxcAJGik2h5ZmgoFfRySTlk_E,5545
|
6
|
+
cbbd/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
7
|
+
cbbd/rest.py,sha256=9lIZGGuyQCWcFAnrTuxPv78n4jQ35z0VIUov79CcFzw,14162
|
8
|
+
cbbd/api/__init__.py,sha256=nv4S_F40ZH9NiWNrm5nu1G3DU1JD9dVdF6aOwzonSO4,302
|
9
|
+
cbbd/api/conferences_api.py,sha256=iTGlyW2Bo7NFxC6pXHM_bQRJE9d9MFTgGSpMWCjM2MQ,6662
|
10
|
+
cbbd/api/games_api.py,sha256=C_AmiWyCN9m6oHLshFI5P5Z5LGiEFKiJr3-z6utTscU,41194
|
11
|
+
cbbd/api/plays_api.py,sha256=WmwfcklqFGtv61vWC8wtCcnlCNYylXCwdlgPhQHgvK8,32183
|
12
|
+
cbbd/api/stats_api.py,sha256=-TwTlw7ERjvy8OCXO48W-_NfMFtexMLQOaw1M6FyL60,20182
|
13
|
+
cbbd/api/teams_api.py,sha256=e5OUld8HFz6gEs0uWY543IKG3s_Ib4YhfWEp_kEts58,7725
|
14
|
+
cbbd/api/venues_api.py,sha256=VDzoyVNQlkfUoN9R-yzJyzd9UMuaR6vtn2Wx-gXT3OU,6567
|
15
|
+
cbbd/models/__init__.py,sha256=IFyF-yopEzwsvjFvxb0goxaI8Ik6cHpEv_9f1h2ZVCA,2155
|
16
|
+
cbbd/models/conference_info.py,sha256=u2qlQmjrKfWj-XAC850tgo9Z6WH4UhuXszXPJznkTwE,2436
|
17
|
+
cbbd/models/game_box_score_players.py,sha256=ojMILyhVhNBvTU5HDfu5oa-nOAqLLbNkBDFG5XkMLow,6355
|
18
|
+
cbbd/models/game_box_score_players_players_inner.py,sha256=FedteiECI-UvHVo2oT_9R6cQu-yhLvepvkK1wtxO9hc,12092
|
19
|
+
cbbd/models/game_box_score_team.py,sha256=XVYdBFxJLfXrTzQ4eLrwLqQeZK1gJjqE3KsOHt7RzSE,6386
|
20
|
+
cbbd/models/game_box_score_team_stats.py,sha256=HTK9xDErulf-Ih5Uio9lGOwZsF3xSohKSNMPsoE97Nc,8686
|
21
|
+
cbbd/models/game_box_score_team_stats_points.py,sha256=zq0O1iiw9y7RvtWlFgOXuZz46anGVWB64JCX1V22eQ4,4297
|
22
|
+
cbbd/models/game_info.py,sha256=FTyph9XP9M4DUal5_GJ3s9PpRkUmr-f8XwIGM9cKaOk,9614
|
23
|
+
cbbd/models/game_media_info.py,sha256=YvlTdQ3JnwFk7Hged9e_rMcf2nZxKFs_Pk6WNUefw_4,5671
|
24
|
+
cbbd/models/game_media_info_broadcasts_inner.py,sha256=XM_wB_VDwv_JKEdSJphLIvS_cnAw6tpIIHC46_G7in0,2324
|
25
|
+
cbbd/models/game_status.py,sha256=G7oJ1ka6YjAYE7Df3YIQ8TPeQikFMuFpo4dLiy6c-DM,948
|
26
|
+
cbbd/models/play_info.py,sha256=YUB2kJtQpVfagBYcLZBRQRUmeK1Iz2trp7nz5IEhTjc,8576
|
27
|
+
cbbd/models/play_info_participants_inner.py,sha256=eVI69q_aIlhucuY5FDX74_Y-xRRZbK8PuJZanQW4Xgk,2165
|
28
|
+
cbbd/models/play_type_info.py,sha256=lhIZGFC4N6VLN9oGMYw6jwSquN82LIeJwNlgVE78CCs,2061
|
29
|
+
cbbd/models/player_season_stats.py,sha256=ZnLKGscVjO-MlrK9AnWLkwbMS66Whqe_q5hRnU7Itu8,11712
|
30
|
+
cbbd/models/season_type.py,sha256=kcefkLZ21oVnkFaTvFZLjbN4iWc0GEirP9JrA3BYlPQ,894
|
31
|
+
cbbd/models/team_info.py,sha256=9qUW4p7SxiZSkfFt46THKz_CHi0WgQS3CAvGBzjYD0w,6665
|
32
|
+
cbbd/models/team_season_stats.py,sha256=qwYmU-p3nBnC4EllFnG1JdrnipP7Tb78aLCvRKmdMdk,4262
|
33
|
+
cbbd/models/team_season_unit_stats.py,sha256=YoRMc75UUAH7UAua0KcuvRTdG8dO3ZfEg5Fx-sFDeUE,8286
|
34
|
+
cbbd/models/team_season_unit_stats_field_goals.py,sha256=M8gr8cNwC11TCTrB7k4QkUVOjtKDcYRUvZQSGnHxMJw,3026
|
35
|
+
cbbd/models/team_season_unit_stats_fouls.py,sha256=Xmn1AJgWE2K1qUjsINaon6W5jhtK4RgNbNMBDlA1a3g,3034
|
36
|
+
cbbd/models/team_season_unit_stats_four_factors.py,sha256=7jLBd62PPnEhNaliTaKWytUJWU5HdIesup-mwALrMYQ,3883
|
37
|
+
cbbd/models/team_season_unit_stats_points.py,sha256=EisPLNesvonKtxT5RQ4uD_yMY2XjLUTLn3mzDV0ivxU,3498
|
38
|
+
cbbd/models/team_season_unit_stats_rebounds.py,sha256=ehd-8rAj03kQK1MmJSL6ol2oBrN_11RtfFpFskmm5X0,3066
|
39
|
+
cbbd/models/team_season_unit_stats_turnovers.py,sha256=eX2widEXID_0NBGdqMruZc5cc151zbD-glw4Gy3E35s,2763
|
40
|
+
cbbd/models/venue_info.py,sha256=7tNTtSEBHFgtCAgcVcmkX5LmJMF6Cb_sPB0UVKpacQc,3331
|
41
|
+
cbbd-1.1.3.dist-info/METADATA,sha256=tsPALPEk0t89Nb20HxvTwg5tbkWpzSAkRonzGUXrSwM,763
|
42
|
+
cbbd-1.1.3.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
43
|
+
cbbd-1.1.3.dist-info/top_level.txt,sha256=d8efSEMxRPpV_X-2jtQvf9S-EI4HoFQpCEOZCjDxT24,5
|
44
|
+
cbbd-1.1.3.dist-info/RECORD,,
|
cbbd-1.1.2.dist-info/RECORD
DELETED
@@ -1,44 +0,0 @@
|
|
1
|
-
cbbd/__init__.py,sha256=zKRYBo6ThErvx8a41QAuRz2vcxyvqdOtx5oPYVoOQhk,2863
|
2
|
-
cbbd/api_client.py,sha256=dOShksxdguYgOezrQyEfqU9mEYd9PRJWxzLM1PKsLx4,29894
|
3
|
-
cbbd/api_response.py,sha256=uCehWdXXDnAO2HAHGKe0SgpQ_mJiGDbcu-BHDF3n_IM,852
|
4
|
-
cbbd/configuration.py,sha256=7YUkF0H3ApVtcGrg5Tw938_fng3wXP7x5SBSbE_bv4Y,14796
|
5
|
-
cbbd/exceptions.py,sha256=a4jvYCpOFGo2E9Vy7czKBKl7Ka5i_kiBm_6y6t342VM,5545
|
6
|
-
cbbd/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
7
|
-
cbbd/rest.py,sha256=zcs94c21ESwz7ZManX6N6Kv6rRk_zUYqGCeIHAzzouA,14162
|
8
|
-
cbbd/api/__init__.py,sha256=nv4S_F40ZH9NiWNrm5nu1G3DU1JD9dVdF6aOwzonSO4,302
|
9
|
-
cbbd/api/conferences_api.py,sha256=texhA-Tym13X6NEAx2bTk1wQHeCX7qzUugC9ZjflR6Q,6662
|
10
|
-
cbbd/api/games_api.py,sha256=VTJ9Eu2une4bUXJhSNGLAAjhccXrXo1EFOvu3PSB3zA,41194
|
11
|
-
cbbd/api/plays_api.py,sha256=2Tc-fK_Q-u1ja15dPiQdaFWdQMI6rd07PwrUSGgPndc,32183
|
12
|
-
cbbd/api/stats_api.py,sha256=2gGLzqiSe_lr-Rt4XUix0X4zC66jJgg172X6s_W9jdM,20182
|
13
|
-
cbbd/api/teams_api.py,sha256=fBeI1foymoVpbVw1uP9CNyPl9mHPuitnpkME9VP3psY,7725
|
14
|
-
cbbd/api/venues_api.py,sha256=FzzTSJzcpnrOJvOwjVYLdNLf-rY8hkwkPc_ompVYZzk,6567
|
15
|
-
cbbd/models/__init__.py,sha256=BOpK3yJfxxw2cI7USq_w0BWali1tNB6rBlL0RA47zK8,2155
|
16
|
-
cbbd/models/conference_info.py,sha256=KtcYokXV6TZ2T7mkoNrTn1Imt40QAlQDlJeb1jSPVoM,2436
|
17
|
-
cbbd/models/game_box_score_players.py,sha256=jLQRzDmq9ow6L_oCHtS3maeJlB-TJ2Dr3NN4Bv2DXak,6355
|
18
|
-
cbbd/models/game_box_score_players_players_inner.py,sha256=eYM1BnwtgSZvS-lCHnW_d8bNfMqou2ymF70nrAzIHlg,12092
|
19
|
-
cbbd/models/game_box_score_team.py,sha256=KzhefFHgKhKTzzI02QTNcYlwD1ppFlh75Rdw-jq8iVk,6386
|
20
|
-
cbbd/models/game_box_score_team_stats.py,sha256=5TgNZGDdNq9Ud-wl3zNFlZLu-xhoZyFlKW_CskpGLPY,8686
|
21
|
-
cbbd/models/game_box_score_team_stats_points.py,sha256=Kd_6oz_gyjzAqvZIzsccTB1WVqvxJwDihXILW01BwYs,4297
|
22
|
-
cbbd/models/game_info.py,sha256=fCXKgY6kN9f8_9tufvY8_E7E84V1cGiVgD4IV7_Yko8,9614
|
23
|
-
cbbd/models/game_media_info.py,sha256=yLGfHb6mudeWAj2jROMgkwVHQPMyKWvS0AJyd15TiHU,5671
|
24
|
-
cbbd/models/game_media_info_broadcasts_inner.py,sha256=qIOLOIdhJCHA01aMOLlc2SBM9iArC640OHwXDyQq8bE,2324
|
25
|
-
cbbd/models/game_status.py,sha256=huDcpCargi_IDZJIennkXuiByItMj6TV6TFQl81jr7w,948
|
26
|
-
cbbd/models/play_info.py,sha256=m-Yzf33Vn-VcoNidi-RhjoyiwxmBlEX_BH2uvi9UCT8,8576
|
27
|
-
cbbd/models/play_info_participants_inner.py,sha256=57DrjU7OgMyPIm433-qkKDCfmZ2d2LLouSsIjYA2sBc,2165
|
28
|
-
cbbd/models/play_type_info.py,sha256=vA23untyiL8JwPd-RuRsUkn66FY5VTkh5vLxSZg8GyA,2061
|
29
|
-
cbbd/models/player_season_stats.py,sha256=wt7sJevtFFMeUSq68ZeObQ5ReoSYhyx1dL4HzJKxFAQ,11712
|
30
|
-
cbbd/models/season_type.py,sha256=ctQZLmtEXK6TEY5sbhVuN9W2lhWA7vwIe_1qxbGoG24,894
|
31
|
-
cbbd/models/team_info.py,sha256=N8JIQCQCNjhJFpEgA57GGFepCDQMK0a6CkzJqKOsGiU,6665
|
32
|
-
cbbd/models/team_season_stats.py,sha256=5XA7s__k2mCh2fOvIpjJT0amhO6PfeaIhQeskKRa17w,4262
|
33
|
-
cbbd/models/team_season_unit_stats.py,sha256=ifMoSJ0IjOwGRTz54mCwz2lq8k_DISffO9U8d5chUnw,8286
|
34
|
-
cbbd/models/team_season_unit_stats_field_goals.py,sha256=AJZOWz3X_nWBciZK7y3CyajjJcwfffJsiebw5qiMeaA,3026
|
35
|
-
cbbd/models/team_season_unit_stats_fouls.py,sha256=Htx_poj1q0m2sw8acBekAwSlIfFt4hC9UxoHuPZkkrw,3034
|
36
|
-
cbbd/models/team_season_unit_stats_four_factors.py,sha256=eCr-WSYyLsDBFiBEdEvNNFL7aM90K0K9v-_6a_myDMw,3883
|
37
|
-
cbbd/models/team_season_unit_stats_points.py,sha256=0b8r6BRs4kIi8lzZpGsrql5kfcyeOnG4xMQoRF-h8iU,3498
|
38
|
-
cbbd/models/team_season_unit_stats_rebounds.py,sha256=LtuDKbvAe7m_HI6znCcR78559hBhVOnlEkZTUtitS3E,3066
|
39
|
-
cbbd/models/team_season_unit_stats_turnovers.py,sha256=Q4YuiRgLnb5hzjE1YOhJq-eRxZR48eR4Lpxvkl7oH0k,2763
|
40
|
-
cbbd/models/venue_info.py,sha256=PezLMIJPFIllC-ZasPYt-OoPK0r9fYZWfpGRoyDZuGQ,3331
|
41
|
-
cbbd-1.1.2.dist-info/METADATA,sha256=tihLPto_kvHd7T4N8i7xmvhK3t7iqrNS7PjJq9ubKhU,763
|
42
|
-
cbbd-1.1.2.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
43
|
-
cbbd-1.1.2.dist-info/top_level.txt,sha256=d8efSEMxRPpV_X-2jtQvf9S-EI4HoFQpCEOZCjDxT24,5
|
44
|
-
cbbd-1.1.2.dist-info/RECORD,,
|
File without changes
|
File without changes
|