cbbd 1.3.0__tar.gz → 1.4.0__tar.gz

Sign up to get free protection for your applications and to get access to all the features.
Files changed (103) hide show
  1. {cbbd-1.3.0 → cbbd-1.4.0}/PKG-INFO +1 -1
  2. {cbbd-1.3.0 → cbbd-1.4.0}/README.md +6 -4
  3. {cbbd-1.3.0 → cbbd-1.4.0}/cbbd/__init__.py +4 -2
  4. {cbbd-1.3.0 → cbbd-1.4.0}/cbbd/api/__init__.py +1 -0
  5. {cbbd-1.3.0 → cbbd-1.4.0}/cbbd/api/conferences_api.py +1 -1
  6. {cbbd-1.3.0 → cbbd-1.4.0}/cbbd/api/games_api.py +1 -1
  7. {cbbd-1.3.0 → cbbd-1.4.0}/cbbd/api/lines_api.py +1 -1
  8. {cbbd-1.3.0 → cbbd-1.4.0}/cbbd/api/plays_api.py +1 -1
  9. cbbd-1.4.0/cbbd/api/ratings_api.py +203 -0
  10. {cbbd-1.3.0 → cbbd-1.4.0}/cbbd/api/stats_api.py +1 -1
  11. {cbbd-1.3.0 → cbbd-1.4.0}/cbbd/api/teams_api.py +1 -1
  12. {cbbd-1.3.0 → cbbd-1.4.0}/cbbd/api/venues_api.py +1 -1
  13. {cbbd-1.3.0 → cbbd-1.4.0}/cbbd/api_client.py +2 -2
  14. {cbbd-1.3.0 → cbbd-1.4.0}/cbbd/configuration.py +3 -3
  15. {cbbd-1.3.0 → cbbd-1.4.0}/cbbd/exceptions.py +1 -1
  16. {cbbd-1.3.0 → cbbd-1.4.0}/cbbd/models/__init__.py +2 -1
  17. {cbbd-1.3.0 → cbbd-1.4.0}/cbbd/models/conference_history.py +1 -1
  18. {cbbd-1.3.0 → cbbd-1.4.0}/cbbd/models/conference_history_teams_inner.py +1 -1
  19. {cbbd-1.3.0 → cbbd-1.4.0}/cbbd/models/conference_info.py +1 -1
  20. {cbbd-1.3.0 → cbbd-1.4.0}/cbbd/models/game_box_score_players.py +1 -1
  21. {cbbd-1.3.0 → cbbd-1.4.0}/cbbd/models/game_box_score_players_players_inner.py +1 -1
  22. {cbbd-1.3.0 → cbbd-1.4.0}/cbbd/models/game_box_score_team.py +1 -1
  23. {cbbd-1.3.0 → cbbd-1.4.0}/cbbd/models/game_box_score_team_stats.py +1 -1
  24. {cbbd-1.3.0 → cbbd-1.4.0}/cbbd/models/game_box_score_team_stats_points.py +1 -1
  25. {cbbd-1.3.0 → cbbd-1.4.0}/cbbd/models/game_info.py +1 -1
  26. {cbbd-1.3.0 → cbbd-1.4.0}/cbbd/models/game_line_info.py +1 -1
  27. {cbbd-1.3.0 → cbbd-1.4.0}/cbbd/models/game_lines.py +1 -1
  28. {cbbd-1.3.0 → cbbd-1.4.0}/cbbd/models/game_media_info.py +1 -1
  29. {cbbd-1.3.0 → cbbd-1.4.0}/cbbd/models/game_media_info_broadcasts_inner.py +1 -1
  30. {cbbd-1.3.0 → cbbd-1.4.0}/cbbd/models/game_status.py +1 -1
  31. {cbbd-1.3.0 → cbbd-1.4.0}/cbbd/models/line_provider_info.py +1 -1
  32. {cbbd-1.3.0 → cbbd-1.4.0}/cbbd/models/play_info.py +1 -1
  33. {cbbd-1.3.0 → cbbd-1.4.0}/cbbd/models/play_info_participants_inner.py +1 -1
  34. {cbbd-1.3.0 → cbbd-1.4.0}/cbbd/models/play_type_info.py +1 -1
  35. {cbbd-1.3.0 → cbbd-1.4.0}/cbbd/models/player_season_stats.py +1 -1
  36. {cbbd-1.3.0 → cbbd-1.4.0}/cbbd/models/season_type.py +1 -1
  37. cbbd-1.4.0/cbbd/models/srs_info.py +80 -0
  38. {cbbd-1.3.0 → cbbd-1.4.0}/cbbd/models/team_info.py +1 -1
  39. {cbbd-1.3.0 → cbbd-1.4.0}/cbbd/models/team_roster.py +1 -1
  40. {cbbd-1.3.0 → cbbd-1.4.0}/cbbd/models/team_roster_player.py +1 -1
  41. {cbbd-1.3.0 → cbbd-1.4.0}/cbbd/models/team_roster_player_hometown.py +1 -1
  42. {cbbd-1.3.0 → cbbd-1.4.0}/cbbd/models/team_season_stats.py +1 -1
  43. {cbbd-1.3.0 → cbbd-1.4.0}/cbbd/models/team_season_unit_stats.py +1 -1
  44. {cbbd-1.3.0 → cbbd-1.4.0}/cbbd/models/team_season_unit_stats_field_goals.py +1 -1
  45. {cbbd-1.3.0 → cbbd-1.4.0}/cbbd/models/team_season_unit_stats_fouls.py +1 -1
  46. {cbbd-1.3.0 → cbbd-1.4.0}/cbbd/models/team_season_unit_stats_four_factors.py +1 -1
  47. {cbbd-1.3.0 → cbbd-1.4.0}/cbbd/models/team_season_unit_stats_points.py +1 -1
  48. {cbbd-1.3.0 → cbbd-1.4.0}/cbbd/models/team_season_unit_stats_rebounds.py +1 -1
  49. {cbbd-1.3.0 → cbbd-1.4.0}/cbbd/models/team_season_unit_stats_turnovers.py +1 -1
  50. {cbbd-1.3.0 → cbbd-1.4.0}/cbbd/models/venue_info.py +1 -1
  51. {cbbd-1.3.0 → cbbd-1.4.0}/cbbd/rest.py +1 -1
  52. {cbbd-1.3.0 → cbbd-1.4.0}/cbbd.egg-info/PKG-INFO +1 -1
  53. {cbbd-1.3.0 → cbbd-1.4.0}/cbbd.egg-info/SOURCES.txt +4 -0
  54. {cbbd-1.3.0 → cbbd-1.4.0}/pyproject.toml +1 -1
  55. {cbbd-1.3.0 → cbbd-1.4.0}/setup.py +2 -2
  56. {cbbd-1.3.0 → cbbd-1.4.0}/test/test_conference_history.py +1 -1
  57. {cbbd-1.3.0 → cbbd-1.4.0}/test/test_conference_history_teams_inner.py +1 -1
  58. {cbbd-1.3.0 → cbbd-1.4.0}/test/test_conference_info.py +1 -1
  59. {cbbd-1.3.0 → cbbd-1.4.0}/test/test_conferences_api.py +1 -1
  60. {cbbd-1.3.0 → cbbd-1.4.0}/test/test_game_box_score_players.py +1 -1
  61. {cbbd-1.3.0 → cbbd-1.4.0}/test/test_game_box_score_players_players_inner.py +1 -1
  62. {cbbd-1.3.0 → cbbd-1.4.0}/test/test_game_box_score_team.py +1 -1
  63. {cbbd-1.3.0 → cbbd-1.4.0}/test/test_game_box_score_team_stats.py +1 -1
  64. {cbbd-1.3.0 → cbbd-1.4.0}/test/test_game_box_score_team_stats_points.py +1 -1
  65. {cbbd-1.3.0 → cbbd-1.4.0}/test/test_game_info.py +1 -1
  66. {cbbd-1.3.0 → cbbd-1.4.0}/test/test_game_line_info.py +1 -1
  67. {cbbd-1.3.0 → cbbd-1.4.0}/test/test_game_lines.py +1 -1
  68. {cbbd-1.3.0 → cbbd-1.4.0}/test/test_game_media_info.py +1 -1
  69. {cbbd-1.3.0 → cbbd-1.4.0}/test/test_game_media_info_broadcasts_inner.py +1 -1
  70. {cbbd-1.3.0 → cbbd-1.4.0}/test/test_game_status.py +1 -1
  71. {cbbd-1.3.0 → cbbd-1.4.0}/test/test_games_api.py +1 -1
  72. {cbbd-1.3.0 → cbbd-1.4.0}/test/test_line_provider_info.py +1 -1
  73. {cbbd-1.3.0 → cbbd-1.4.0}/test/test_lines_api.py +1 -1
  74. {cbbd-1.3.0 → cbbd-1.4.0}/test/test_play_info.py +1 -1
  75. {cbbd-1.3.0 → cbbd-1.4.0}/test/test_play_info_participants_inner.py +1 -1
  76. {cbbd-1.3.0 → cbbd-1.4.0}/test/test_play_type_info.py +1 -1
  77. {cbbd-1.3.0 → cbbd-1.4.0}/test/test_player_season_stats.py +1 -1
  78. {cbbd-1.3.0 → cbbd-1.4.0}/test/test_plays_api.py +1 -1
  79. cbbd-1.4.0/test/test_ratings_api.py +38 -0
  80. {cbbd-1.3.0 → cbbd-1.4.0}/test/test_season_type.py +1 -1
  81. cbbd-1.4.0/test/test_srs_info.py +62 -0
  82. {cbbd-1.3.0 → cbbd-1.4.0}/test/test_stats_api.py +1 -1
  83. {cbbd-1.3.0 → cbbd-1.4.0}/test/test_team_info.py +1 -1
  84. {cbbd-1.3.0 → cbbd-1.4.0}/test/test_team_roster.py +1 -1
  85. {cbbd-1.3.0 → cbbd-1.4.0}/test/test_team_roster_player.py +1 -1
  86. {cbbd-1.3.0 → cbbd-1.4.0}/test/test_team_roster_player_hometown.py +1 -1
  87. {cbbd-1.3.0 → cbbd-1.4.0}/test/test_team_season_stats.py +1 -1
  88. {cbbd-1.3.0 → cbbd-1.4.0}/test/test_team_season_unit_stats.py +1 -1
  89. {cbbd-1.3.0 → cbbd-1.4.0}/test/test_team_season_unit_stats_field_goals.py +1 -1
  90. {cbbd-1.3.0 → cbbd-1.4.0}/test/test_team_season_unit_stats_fouls.py +1 -1
  91. {cbbd-1.3.0 → cbbd-1.4.0}/test/test_team_season_unit_stats_four_factors.py +1 -1
  92. {cbbd-1.3.0 → cbbd-1.4.0}/test/test_team_season_unit_stats_points.py +1 -1
  93. {cbbd-1.3.0 → cbbd-1.4.0}/test/test_team_season_unit_stats_rebounds.py +1 -1
  94. {cbbd-1.3.0 → cbbd-1.4.0}/test/test_team_season_unit_stats_turnovers.py +1 -1
  95. {cbbd-1.3.0 → cbbd-1.4.0}/test/test_teams_api.py +1 -1
  96. {cbbd-1.3.0 → cbbd-1.4.0}/test/test_venue_info.py +1 -1
  97. {cbbd-1.3.0 → cbbd-1.4.0}/test/test_venues_api.py +1 -1
  98. {cbbd-1.3.0 → cbbd-1.4.0}/cbbd/api_response.py +0 -0
  99. {cbbd-1.3.0 → cbbd-1.4.0}/cbbd/py.typed +0 -0
  100. {cbbd-1.3.0 → cbbd-1.4.0}/cbbd.egg-info/dependency_links.txt +0 -0
  101. {cbbd-1.3.0 → cbbd-1.4.0}/cbbd.egg-info/requires.txt +0 -0
  102. {cbbd-1.3.0 → cbbd-1.4.0}/cbbd.egg-info/top_level.txt +0 -0
  103. {cbbd-1.3.0 → cbbd-1.4.0}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: cbbd
3
- Version: 1.3.0
3
+ Version: 1.4.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
@@ -3,8 +3,8 @@ This API is in limited Beta for Patreon subscribers. It may have bugs and is sub
3
3
 
4
4
  This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
5
5
 
6
- - API version: 1.3.0
7
- - Package version: 1.3.0
6
+ - API version: 1.4.0
7
+ - Package version: 1.4.0
8
8
  - Generator version: 7.11.0
9
9
  - Build package: org.openapitools.codegen.languages.PythonPydanticV1ClientCodegen
10
10
 
@@ -16,9 +16,9 @@ Python 3.7+
16
16
  ### pip install
17
17
 
18
18
  ```sh
19
- pip install cbbd@1.3.0
19
+ pip install cbbd@1.4.0
20
20
  ```
21
- (you may need to run `pip` with root permission: `sudo pip install cbbd@1.3.0`)
21
+ (you may need to run `pip` with root permission: `sudo pip install cbbd@1.4.0`)
22
22
 
23
23
  Then import the package:
24
24
  ```python
@@ -87,6 +87,7 @@ Class | Method | HTTP request | Description
87
87
  *PlaysApi* | [**get_plays_by_date**](docs/PlaysApi.md#get_plays_by_date) | **GET** /plays/date |
88
88
  *PlaysApi* | [**get_plays_by_player_id**](docs/PlaysApi.md#get_plays_by_player_id) | **GET** /plays/player/{playerId} |
89
89
  *PlaysApi* | [**get_plays_by_team**](docs/PlaysApi.md#get_plays_by_team) | **GET** /plays/team |
90
+ *RatingsApi* | [**get_srs**](docs/RatingsApi.md#get_srs) | **GET** /ratings/srs |
90
91
  *StatsApi* | [**get_player_season_stats**](docs/StatsApi.md#get_player_season_stats) | **GET** /stats/player/season |
91
92
  *StatsApi* | [**get_team_season_stats**](docs/StatsApi.md#get_team_season_stats) | **GET** /stats/team/season |
92
93
  *TeamsApi* | [**get_team_roster**](docs/TeamsApi.md#get_team_roster) | **GET** /teams/roster |
@@ -116,6 +117,7 @@ Class | Method | HTTP request | Description
116
117
  - [PlayTypeInfo](docs/PlayTypeInfo.md)
117
118
  - [PlayerSeasonStats](docs/PlayerSeasonStats.md)
118
119
  - [SeasonType](docs/SeasonType.md)
120
+ - [SrsInfo](docs/SrsInfo.md)
119
121
  - [TeamInfo](docs/TeamInfo.md)
120
122
  - [TeamRoster](docs/TeamRoster.md)
121
123
  - [TeamRosterPlayer](docs/TeamRosterPlayer.md)
@@ -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.3.0
10
+ The version of the OpenAPI document: 1.4.0
11
11
  Contact: admin@collegefootballdata.com
12
12
  Generated by OpenAPI Generator (https://openapi-generator.tech)
13
13
 
@@ -15,13 +15,14 @@
15
15
  """ # noqa: E501
16
16
 
17
17
 
18
- __version__ = "1.3.0"
18
+ __version__ = "1.4.0"
19
19
 
20
20
  # import apis into sdk package
21
21
  from cbbd.api.conferences_api import ConferencesApi
22
22
  from cbbd.api.games_api import GamesApi
23
23
  from cbbd.api.lines_api import LinesApi
24
24
  from cbbd.api.plays_api import PlaysApi
25
+ from cbbd.api.ratings_api import RatingsApi
25
26
  from cbbd.api.stats_api import StatsApi
26
27
  from cbbd.api.teams_api import TeamsApi
27
28
  from cbbd.api.venues_api import VenuesApi
@@ -58,6 +59,7 @@ from cbbd.models.play_info_participants_inner import PlayInfoParticipantsInner
58
59
  from cbbd.models.play_type_info import PlayTypeInfo
59
60
  from cbbd.models.player_season_stats import PlayerSeasonStats
60
61
  from cbbd.models.season_type import SeasonType
62
+ from cbbd.models.srs_info import SrsInfo
61
63
  from cbbd.models.team_info import TeamInfo
62
64
  from cbbd.models.team_roster import TeamRoster
63
65
  from cbbd.models.team_roster_player import TeamRosterPlayer
@@ -5,6 +5,7 @@ from cbbd.api.conferences_api import ConferencesApi
5
5
  from cbbd.api.games_api import GamesApi
6
6
  from cbbd.api.lines_api import LinesApi
7
7
  from cbbd.api.plays_api import PlaysApi
8
+ from cbbd.api.ratings_api import RatingsApi
8
9
  from cbbd.api.stats_api import StatsApi
9
10
  from cbbd.api.teams_api import TeamsApi
10
11
  from cbbd.api.venues_api import VenuesApi
@@ -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.3.0
8
+ The version of the OpenAPI document: 1.4.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.3.0
8
+ The version of the OpenAPI document: 1.4.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.3.0
8
+ The version of the OpenAPI document: 1.4.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.3.0
8
+ The version of the OpenAPI document: 1.4.0
9
9
  Contact: admin@collegefootballdata.com
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -0,0 +1,203 @@
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.4.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
+ import re # noqa: F401
17
+ import io
18
+ import warnings
19
+
20
+ from pydantic import validate_arguments, ValidationError
21
+
22
+ from typing_extensions import Annotated
23
+ from pydantic import Field, StrictInt, StrictStr
24
+
25
+ from typing import List, Optional
26
+
27
+ from cbbd.models.srs_info import SrsInfo
28
+
29
+ from cbbd.api_client import ApiClient
30
+ from cbbd.api_response import ApiResponse
31
+ from cbbd.exceptions import ( # noqa: F401
32
+ ApiTypeError,
33
+ ApiValueError
34
+ )
35
+
36
+
37
+ class RatingsApi:
38
+ """NOTE: This class is auto generated by OpenAPI Generator
39
+ Ref: https://openapi-generator.tech
40
+
41
+ Do not edit the class manually.
42
+ """
43
+
44
+ def __init__(self, api_client=None) -> None:
45
+ if api_client is None:
46
+ api_client = ApiClient.get_default()
47
+ self.api_client = api_client
48
+
49
+ @validate_arguments
50
+ def get_srs(self, season : Annotated[Optional[StrictInt], Field(description="Optional season filter")] = None, team : Annotated[Optional[StrictStr], Field(description="Optional team filter")] = None, conference : Annotated[Optional[StrictStr], Field(description="Optional conference abbreviation filter")] = None, **kwargs) -> List[SrsInfo]: # noqa: E501
51
+ """get_srs # noqa: E501
52
+
53
+ Retrieves SRS ratings for the provided season, team, or conference. # noqa: E501
54
+ This method makes a synchronous HTTP request by default. To make an
55
+ asynchronous HTTP request, please pass async_req=True
56
+
57
+ >>> thread = api.get_srs(season, team, conference, async_req=True)
58
+ >>> result = thread.get()
59
+
60
+ :param season: Optional season filter
61
+ :type season: int
62
+ :param team: Optional team filter
63
+ :type team: str
64
+ :param conference: Optional conference abbreviation filter
65
+ :type conference: str
66
+ :param async_req: Whether to execute the request asynchronously.
67
+ :type async_req: bool, optional
68
+ :param _request_timeout: timeout setting for this request.
69
+ If one number provided, it will be total request
70
+ timeout. It can also be a pair (tuple) of
71
+ (connection, read) timeouts.
72
+ :return: Returns the result object.
73
+ If the method is called asynchronously,
74
+ returns the request thread.
75
+ :rtype: List[SrsInfo]
76
+ """
77
+ kwargs['_return_http_data_only'] = True
78
+ if '_preload_content' in kwargs:
79
+ message = "Error! Please call the get_srs_with_http_info method with `_preload_content` instead and obtain raw data from ApiResponse.raw_data" # noqa: E501
80
+ raise ValueError(message)
81
+ return self.get_srs_with_http_info(season, team, conference, **kwargs) # noqa: E501
82
+
83
+ @validate_arguments
84
+ def get_srs_with_http_info(self, season : Annotated[Optional[StrictInt], Field(description="Optional season filter")] = None, team : Annotated[Optional[StrictStr], Field(description="Optional team filter")] = None, conference : Annotated[Optional[StrictStr], Field(description="Optional conference abbreviation filter")] = None, **kwargs) -> ApiResponse: # noqa: E501
85
+ """get_srs # noqa: E501
86
+
87
+ Retrieves SRS ratings for the provided season, team, or conference. # noqa: E501
88
+ This method makes a synchronous HTTP request by default. To make an
89
+ asynchronous HTTP request, please pass async_req=True
90
+
91
+ >>> thread = api.get_srs_with_http_info(season, team, conference, async_req=True)
92
+ >>> result = thread.get()
93
+
94
+ :param season: Optional season filter
95
+ :type season: int
96
+ :param team: Optional team filter
97
+ :type team: str
98
+ :param conference: Optional conference abbreviation filter
99
+ :type conference: str
100
+ :param async_req: Whether to execute the request asynchronously.
101
+ :type async_req: bool, optional
102
+ :param _preload_content: if False, the ApiResponse.data will
103
+ be set to none and raw_data will store the
104
+ HTTP response body without reading/decoding.
105
+ Default is True.
106
+ :type _preload_content: bool, optional
107
+ :param _return_http_data_only: response data instead of ApiResponse
108
+ object with status code, headers, etc
109
+ :type _return_http_data_only: bool, optional
110
+ :param _request_timeout: timeout setting for this request. If one
111
+ number provided, it will be total request
112
+ timeout. It can also be a pair (tuple) of
113
+ (connection, read) timeouts.
114
+ :param _request_auth: set to override the auth_settings for an a single
115
+ request; this effectively ignores the authentication
116
+ in the spec for a single request.
117
+ :type _request_auth: dict, optional
118
+ :type _content_type: string, optional: force content-type for the request
119
+ :return: Returns the result object.
120
+ If the method is called asynchronously,
121
+ returns the request thread.
122
+ :rtype: tuple(List[SrsInfo], status_code(int), headers(HTTPHeaderDict))
123
+ """
124
+
125
+ _params = locals()
126
+
127
+ _all_params = [
128
+ 'season',
129
+ 'team',
130
+ 'conference'
131
+ ]
132
+ _all_params.extend(
133
+ [
134
+ 'async_req',
135
+ '_return_http_data_only',
136
+ '_preload_content',
137
+ '_request_timeout',
138
+ '_request_auth',
139
+ '_content_type',
140
+ '_headers'
141
+ ]
142
+ )
143
+
144
+ # validate the arguments
145
+ for _key, _val in _params['kwargs'].items():
146
+ if _key not in _all_params:
147
+ raise ApiTypeError(
148
+ "Got an unexpected keyword argument '%s'"
149
+ " to method get_srs" % _key
150
+ )
151
+ _params[_key] = _val
152
+ del _params['kwargs']
153
+
154
+ _collection_formats = {}
155
+
156
+ # process the path parameters
157
+ _path_params = {}
158
+
159
+ # process the query parameters
160
+ _query_params = []
161
+ if _params.get('season') is not None: # noqa: E501
162
+ _query_params.append(('season', _params['season']))
163
+
164
+ if _params.get('team') is not None: # noqa: E501
165
+ _query_params.append(('team', _params['team']))
166
+
167
+ if _params.get('conference') is not None: # noqa: E501
168
+ _query_params.append(('conference', _params['conference']))
169
+
170
+ # process the header parameters
171
+ _header_params = dict(_params.get('_headers', {}))
172
+ # process the form parameters
173
+ _form_params = []
174
+ _files = {}
175
+ # process the body parameter
176
+ _body_params = None
177
+ # set the HTTP header `Accept`
178
+ _header_params['Accept'] = self.api_client.select_header_accept(
179
+ ['application/json']) # noqa: E501
180
+
181
+ # authentication setting
182
+ _auth_settings = ['apiKey'] # noqa: E501
183
+
184
+ _response_types_map = {
185
+ '200': "List[SrsInfo]",
186
+ }
187
+
188
+ return self.api_client.call_api(
189
+ '/ratings/srs', 'GET',
190
+ _path_params,
191
+ _query_params,
192
+ _header_params,
193
+ body=_body_params,
194
+ post_params=_form_params,
195
+ files=_files,
196
+ response_types_map=_response_types_map,
197
+ auth_settings=_auth_settings,
198
+ async_req=_params.get('async_req'),
199
+ _return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
200
+ _preload_content=_params.get('_preload_content', True),
201
+ _request_timeout=_params.get('_request_timeout'),
202
+ collection_formats=_collection_formats,
203
+ _request_auth=_params.get('_request_auth'))
@@ -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.3.0
8
+ The version of the OpenAPI document: 1.4.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.3.0
8
+ The version of the OpenAPI document: 1.4.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.3.0
8
+ The version of the OpenAPI document: 1.4.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.3.0
8
+ The version of the OpenAPI document: 1.4.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.3.0/python'
81
+ self.user_agent = 'OpenAPI-Generator/1.4.0/python'
82
82
  self.client_side_validation = configuration.client_side_validation
83
83
 
84
84
  def __enter__(self):
@@ -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.3.0
8
+ The version of the OpenAPI document: 1.4.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.3.0\n"\
380
- "SDK Package Version: 1.3.0".\
379
+ "Version of the API: 1.4.0\n"\
380
+ "SDK Package Version: 1.4.0".\
381
381
  format(env=sys.platform, pyversion=sys.version)
382
382
 
383
383
  def get_host_settings(self):
@@ -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.3.0
8
+ The version of the OpenAPI document: 1.4.0
9
9
  Contact: admin@collegefootballdata.com
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -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.3.0
9
+ The version of the OpenAPI document: 1.4.0
10
10
  Contact: admin@collegefootballdata.com
11
11
  Generated by OpenAPI Generator (https://openapi-generator.tech)
12
12
 
@@ -35,6 +35,7 @@ from cbbd.models.play_info_participants_inner import PlayInfoParticipantsInner
35
35
  from cbbd.models.play_type_info import PlayTypeInfo
36
36
  from cbbd.models.player_season_stats import PlayerSeasonStats
37
37
  from cbbd.models.season_type import SeasonType
38
+ from cbbd.models.srs_info import SrsInfo
38
39
  from cbbd.models.team_info import TeamInfo
39
40
  from cbbd.models.team_roster import TeamRoster
40
41
  from cbbd.models.team_roster_player import TeamRosterPlayer
@@ -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.3.0
8
+ The version of the OpenAPI document: 1.4.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.3.0
8
+ The version of the OpenAPI document: 1.4.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.3.0
8
+ The version of the OpenAPI document: 1.4.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.3.0
8
+ The version of the OpenAPI document: 1.4.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.3.0
8
+ The version of the OpenAPI document: 1.4.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.3.0
8
+ The version of the OpenAPI document: 1.4.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.3.0
8
+ The version of the OpenAPI document: 1.4.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.3.0
8
+ The version of the OpenAPI document: 1.4.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.3.0
8
+ The version of the OpenAPI document: 1.4.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.3.0
8
+ The version of the OpenAPI document: 1.4.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.3.0
8
+ The version of the OpenAPI document: 1.4.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.3.0
8
+ The version of the OpenAPI document: 1.4.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.3.0
8
+ The version of the OpenAPI document: 1.4.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.3.0
8
+ The version of the OpenAPI document: 1.4.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.3.0
8
+ The version of the OpenAPI document: 1.4.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.3.0
8
+ The version of the OpenAPI document: 1.4.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.3.0
8
+ The version of the OpenAPI document: 1.4.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.3.0
8
+ The version of the OpenAPI document: 1.4.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.3.0
8
+ The version of the OpenAPI document: 1.4.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.3.0
8
+ The version of the OpenAPI document: 1.4.0
9
9
  Contact: admin@collegefootballdata.com
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11