You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: cbbd/__init__.py
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -7,15 +7,15 @@
7
7
8
8
This is an API for query various college basketball datasets and analytics. API keys can be acquired by registering on the CollegeBasketballData.com website.
9
9
10
-
The version of the OpenAPI document: 1.21.3
10
+
The version of the OpenAPI document: 1.22.0
11
11
Contact: admin@collegefootballdata.com
12
12
Generated by OpenAPI Generator (https://openapi-generator.tech)
Copy file name to clipboardExpand all lines: cbbd/api/conferences_api.py
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@
5
5
6
6
This is an API for query various college basketball datasets and analytics. API keys can be acquired by registering on the CollegeBasketballData.com website.
7
7
8
-
The version of the OpenAPI document: 1.21.3
8
+
The version of the OpenAPI document: 1.22.0
9
9
Contact: admin@collegefootballdata.com
10
10
Generated by OpenAPI Generator (https://openapi-generator.tech)
Copy file name to clipboardExpand all lines: cbbd/api/draft_api.py
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@
5
5
6
6
This is an API for query various college basketball datasets and analytics. API keys can be acquired by registering on the CollegeBasketballData.com website.
7
7
8
-
The version of the OpenAPI document: 1.21.3
8
+
The version of the OpenAPI document: 1.22.0
9
9
Contact: admin@collegefootballdata.com
10
10
Generated by OpenAPI Generator (https://openapi-generator.tech)
Copy file name to clipboardExpand all lines: cbbd/api/games_api.py
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@
5
5
6
6
This is an API for query various college basketball datasets and analytics. API keys can be acquired by registering on the CollegeBasketballData.com website.
7
7
8
-
The version of the OpenAPI document: 1.21.3
8
+
The version of the OpenAPI document: 1.22.0
9
9
Contact: admin@collegefootballdata.com
10
10
Generated by OpenAPI Generator (https://openapi-generator.tech)
Copy file name to clipboardExpand all lines: cbbd/api/lines_api.py
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@
5
5
6
6
This is an API for query various college basketball datasets and analytics. API keys can be acquired by registering on the CollegeBasketballData.com website.
7
7
8
-
The version of the OpenAPI document: 1.21.3
8
+
The version of the OpenAPI document: 1.22.0
9
9
Contact: admin@collegefootballdata.com
10
10
Generated by OpenAPI Generator (https://openapi-generator.tech)
Copy file name to clipboardExpand all lines: cbbd/api/lineups_api.py
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@
5
5
6
6
This is an API for query various college basketball datasets and analytics. API keys can be acquired by registering on the CollegeBasketballData.com website.
7
7
8
-
The version of the OpenAPI document: 1.21.3
8
+
The version of the OpenAPI document: 1.22.0
9
9
Contact: admin@collegefootballdata.com
10
10
Generated by OpenAPI Generator (https://openapi-generator.tech)
Copy file name to clipboardExpand all lines: cbbd/api/plays_api.py
+15-7Lines changed: 15 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@
5
5
6
6
This is an API for query various college basketball datasets and analytics. API keys can be acquired by registering on the CollegeBasketballData.com website.
7
7
8
-
The version of the OpenAPI document: 1.21.3
8
+
The version of the OpenAPI document: 1.22.0
9
9
Contact: admin@collegefootballdata.com
10
10
Generated by OpenAPI Generator (https://openapi-generator.tech)
defget_plays_by_date(self, var_date : Annotated[datetime, Field(..., description="Required date filter in ISO 8601 format (YYYY-MM-DD)")], shooting_plays_only : Annotated[Optional[StrictBool], Field(description="Optional filter to only return shooting plays")] =None, **kwargs) ->List[PlayInfo]: # noqa: E501
334
+
defget_plays_by_date(self, var_date : Annotated[datetime, Field(..., description="Required date filter in ISO 8601 format (YYYY-MM-DD)")], shooting_plays_only : Annotated[Optional[StrictBool], Field(description="Optional filter to only return shooting plays")] =None, utc_offset : Annotated[Optional[Union[StrictFloat, StrictInt]], Field(description="Optional UTC offset in hours to adjust the date range")] =None, **kwargs) ->List[PlayInfo]: # noqa: E501
335
335
"""get_plays_by_date # noqa: E501
336
336
337
337
Retrieve all plays for a given UTC date # noqa: E501
338
338
This method makes a synchronous HTTP request by default. To make an
message="Error! Please call the get_plays_by_date_with_http_info method with `_preload_content` instead and obtain raw data from ApiResponse.raw_data"# noqa: E501
defget_plays_by_date_with_http_info(self, var_date : Annotated[datetime, Field(..., description="Required date filter in ISO 8601 format (YYYY-MM-DD)")], shooting_plays_only : Annotated[Optional[StrictBool], Field(description="Optional filter to only return shooting plays")] =None, **kwargs) ->ApiResponse: # noqa: E501
368
+
defget_plays_by_date_with_http_info(self, var_date : Annotated[datetime, Field(..., description="Required date filter in ISO 8601 format (YYYY-MM-DD)")], shooting_plays_only : Annotated[Optional[StrictBool], Field(description="Optional filter to only return shooting plays")] =None, utc_offset : Annotated[Optional[Union[StrictFloat, StrictInt]], Field(description="Optional UTC offset in hours to adjust the date range")] =None, **kwargs) ->ApiResponse: # noqa: E501
367
369
"""get_plays_by_date # noqa: E501
368
370
369
371
Retrieve all plays for a given UTC date # noqa: E501
370
372
This method makes a synchronous HTTP request by default. To make an
Copy file name to clipboardExpand all lines: cbbd/api/rankings_api.py
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@
5
5
6
6
This is an API for query various college basketball datasets and analytics. API keys can be acquired by registering on the CollegeBasketballData.com website.
7
7
8
-
The version of the OpenAPI document: 1.21.3
8
+
The version of the OpenAPI document: 1.22.0
9
9
Contact: admin@collegefootballdata.com
10
10
Generated by OpenAPI Generator (https://openapi-generator.tech)
Copy file name to clipboardExpand all lines: cbbd/api/ratings_api.py
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@
5
5
6
6
This is an API for query various college basketball datasets and analytics. API keys can be acquired by registering on the CollegeBasketballData.com website.
7
7
8
-
The version of the OpenAPI document: 1.21.3
8
+
The version of the OpenAPI document: 1.22.0
9
9
Contact: admin@collegefootballdata.com
10
10
Generated by OpenAPI Generator (https://openapi-generator.tech)
0 commit comments