Skip to content

Commit 2fd7371

Browse files
feat(stats): adding free throws to shot breakdowns
1 parent 492fa26 commit 2fd7371

156 files changed

Lines changed: 357 additions & 317 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# cbbd
2-
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.
2+
This is an API for query various college basketball datasets and analytics. API keys can be acquired by registering on the CollegeBasketballData.com website.
33

44
This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
55

6-
- API version: 1.20.2
7-
- Package version: 1.20.2
6+
- API version: 1.21.0
7+
- Package version: 1.21.0
88
- Generator version: 7.12.0
99
- Build package: org.openapitools.codegen.languages.PythonPydanticV1ClientCodegen
1010

@@ -16,9 +16,9 @@ Python 3.7+
1616
### pip install
1717

1818
```sh
19-
pip install cbbd@1.20.2
19+
pip install cbbd@1.21.0
2020
```
21-
(you may need to run `pip` with root permission: `sudo pip install cbbd@1.20.2`)
21+
(you may need to run `pip` with root permission: `sudo pip install cbbd@1.21.0`)
2222

2323
Then import the package:
2424
```python

cbbd/__init__.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,17 +5,17 @@
55
"""
66
College Basketball Data API
77
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.
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.
99
10-
The version of the OpenAPI document: 1.20.2
10+
The version of the OpenAPI document: 1.21.0
1111
Contact: admin@collegefootballdata.com
1212
Generated by OpenAPI Generator (https://openapi-generator.tech)
1313
1414
Do not edit the class manually.
1515
""" # noqa: E501
1616

1717

18-
__version__ = "1.20.2"
18+
__version__ = "1.21.0"
1919

2020
# import apis into sdk package
2121
from cbbd.api.conferences_api import ConferencesApi

cbbd/api/conferences_api.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
"""
44
College Basketball Data API
55
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.
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.
77
8-
The version of the OpenAPI document: 1.20.2
8+
The version of the OpenAPI document: 1.21.0
99
Contact: admin@collegefootballdata.com
1010
Generated by OpenAPI Generator (https://openapi-generator.tech)
1111

cbbd/api/draft_api.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
"""
44
College Basketball Data API
55
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.
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.
77
8-
The version of the OpenAPI document: 1.20.2
8+
The version of the OpenAPI document: 1.21.0
99
Contact: admin@collegefootballdata.com
1010
Generated by OpenAPI Generator (https://openapi-generator.tech)
1111

cbbd/api/games_api.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
"""
44
College Basketball Data API
55
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.
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.
77
8-
The version of the OpenAPI document: 1.20.2
8+
The version of the OpenAPI document: 1.21.0
99
Contact: admin@collegefootballdata.com
1010
Generated by OpenAPI Generator (https://openapi-generator.tech)
1111

cbbd/api/lines_api.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
"""
44
College Basketball Data API
55
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.
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.
77
8-
The version of the OpenAPI document: 1.20.2
8+
The version of the OpenAPI document: 1.21.0
99
Contact: admin@collegefootballdata.com
1010
Generated by OpenAPI Generator (https://openapi-generator.tech)
1111
@@ -231,6 +231,7 @@ def get_lines_with_http_info(self, season : Annotated[Optional[StrictInt], Field
231231
def get_providers(self, **kwargs) -> List[LineProviderInfo]: # noqa: E501
232232
"""get_providers # noqa: E501
233233
234+
Returns a list of available line providers # noqa: E501
234235
This method makes a synchronous HTTP request by default. To make an
235236
asynchronous HTTP request, please pass async_req=True
236237
@@ -258,6 +259,7 @@ def get_providers(self, **kwargs) -> List[LineProviderInfo]: # noqa: E501
258259
def get_providers_with_http_info(self, **kwargs) -> ApiResponse: # noqa: E501
259260
"""get_providers # noqa: E501
260261
262+
Returns a list of available line providers # noqa: E501
261263
This method makes a synchronous HTTP request by default. To make an
262264
asynchronous HTTP request, please pass async_req=True
263265

cbbd/api/lineups_api.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
"""
44
College Basketball Data API
55
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.
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.
77
8-
The version of the OpenAPI document: 1.20.2
8+
The version of the OpenAPI document: 1.21.0
99
Contact: admin@collegefootballdata.com
1010
Generated by OpenAPI Generator (https://openapi-generator.tech)
1111

cbbd/api/plays_api.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
"""
44
College Basketball Data API
55
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.
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.
77
8-
The version of the OpenAPI document: 1.20.2
8+
The version of the OpenAPI document: 1.21.0
99
Contact: admin@collegefootballdata.com
1010
Generated by OpenAPI Generator (https://openapi-generator.tech)
1111

cbbd/api/rankings_api.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
"""
44
College Basketball Data API
55
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.
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.
77
8-
The version of the OpenAPI document: 1.20.2
8+
The version of the OpenAPI document: 1.21.0
99
Contact: admin@collegefootballdata.com
1010
Generated by OpenAPI Generator (https://openapi-generator.tech)
1111

cbbd/api/ratings_api.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
"""
44
College Basketball Data API
55
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.
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.
77
8-
The version of the OpenAPI document: 1.20.2
8+
The version of the OpenAPI document: 1.21.0
99
Contact: admin@collegefootballdata.com
1010
Generated by OpenAPI Generator (https://openapi-generator.tech)
1111

0 commit comments

Comments
 (0)