cbbd 1.17.1__py3-none-any.whl → 1.18.1__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (79) hide show
  1. cbbd/__init__.py +8 -2
  2. cbbd/api/__init__.py +1 -0
  3. cbbd/api/conferences_api.py +1 -1
  4. cbbd/api/draft_api.py +1 -1
  5. cbbd/api/games_api.py +1 -1
  6. cbbd/api/lines_api.py +1 -1
  7. cbbd/api/lineups_api.py +359 -0
  8. cbbd/api/plays_api.py +1 -1
  9. cbbd/api/rankings_api.py +1 -1
  10. cbbd/api/ratings_api.py +1 -1
  11. cbbd/api/recruiting_api.py +1 -1
  12. cbbd/api/stats_api.py +1 -1
  13. cbbd/api/teams_api.py +1 -1
  14. cbbd/api/venues_api.py +1 -1
  15. cbbd/api_client.py +2 -2
  16. cbbd/configuration.py +3 -3
  17. cbbd/exceptions.py +1 -1
  18. cbbd/models/__init__.py +6 -1
  19. cbbd/models/adjusted_efficiency_info.py +1 -1
  20. cbbd/models/adjusted_efficiency_info_rankings.py +1 -1
  21. cbbd/models/conference_history.py +1 -1
  22. cbbd/models/conference_history_teams_inner.py +1 -1
  23. cbbd/models/conference_info.py +1 -1
  24. cbbd/models/draft_pick.py +1 -1
  25. cbbd/models/draft_position.py +1 -1
  26. cbbd/models/draft_team.py +1 -1
  27. cbbd/models/game_box_score_players.py +1 -1
  28. cbbd/models/game_box_score_players_players_inner.py +1 -1
  29. cbbd/models/game_box_score_team.py +1 -1
  30. cbbd/models/game_box_score_team_stats.py +1 -1
  31. cbbd/models/game_box_score_team_stats_points.py +1 -1
  32. cbbd/models/game_info.py +1 -1
  33. cbbd/models/game_line_info.py +1 -1
  34. cbbd/models/game_lines.py +1 -1
  35. cbbd/models/game_media_info.py +1 -1
  36. cbbd/models/game_media_info_broadcasts_inner.py +1 -1
  37. cbbd/models/game_status.py +1 -1
  38. cbbd/models/line_provider_info.py +1 -1
  39. cbbd/models/lineup_stats.py +109 -0
  40. cbbd/models/lineup_unit_stats.py +116 -0
  41. cbbd/models/lineup_unit_stats_four_factors.py +78 -0
  42. cbbd/models/lineup_unit_stats_two_pointers.py +97 -0
  43. cbbd/models/play_info.py +1 -1
  44. cbbd/models/play_info_on_floor_inner.py +1 -1
  45. cbbd/models/play_info_participants_inner.py +1 -1
  46. cbbd/models/play_type_info.py +1 -1
  47. cbbd/models/player_season_stats.py +1 -1
  48. cbbd/models/player_season_stats_win_shares.py +1 -1
  49. cbbd/models/player_subsititution.py +1 -1
  50. cbbd/models/player_subsititution_sub_in.py +1 -1
  51. cbbd/models/poll_team_info.py +1 -1
  52. cbbd/models/recruit.py +1 -1
  53. cbbd/models/recruit_committed_to.py +1 -1
  54. cbbd/models/recruit_hometown.py +1 -1
  55. cbbd/models/season_type.py +1 -1
  56. cbbd/models/shooting_stats.py +76 -0
  57. cbbd/models/shot_info.py +1 -1
  58. cbbd/models/shot_info_location.py +1 -1
  59. cbbd/models/shot_info_shooter.py +1 -1
  60. cbbd/models/srs_info.py +1 -1
  61. cbbd/models/team_info.py +1 -1
  62. cbbd/models/team_roster.py +1 -1
  63. cbbd/models/team_roster_player.py +1 -1
  64. cbbd/models/team_roster_player_hometown.py +1 -1
  65. cbbd/models/team_season_stats.py +1 -1
  66. cbbd/models/team_season_unit_stats.py +1 -1
  67. cbbd/models/team_season_unit_stats_field_goals.py +1 -1
  68. cbbd/models/team_season_unit_stats_fouls.py +1 -1
  69. cbbd/models/team_season_unit_stats_four_factors.py +1 -1
  70. cbbd/models/team_season_unit_stats_points.py +1 -1
  71. cbbd/models/team_season_unit_stats_rebounds.py +1 -1
  72. cbbd/models/team_season_unit_stats_turnovers.py +1 -1
  73. cbbd/models/venue_info.py +1 -1
  74. cbbd/rest.py +1 -1
  75. {cbbd-1.17.1.dist-info → cbbd-1.18.1.dist-info}/METADATA +1 -1
  76. cbbd-1.18.1.dist-info/RECORD +80 -0
  77. {cbbd-1.17.1.dist-info → cbbd-1.18.1.dist-info}/WHEEL +1 -1
  78. cbbd-1.17.1.dist-info/RECORD +0 -74
  79. {cbbd-1.17.1.dist-info → cbbd-1.18.1.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.17.1
8
+ The version of the OpenAPI document: 1.18.1
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.17.1
8
+ The version of the OpenAPI document: 1.18.1
9
9
  Contact: admin@collegefootballdata.com
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -0,0 +1,76 @@
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.18.1
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 Union
23
+ from pydantic import BaseModel, Field, StrictFloat, StrictInt
24
+
25
+ class ShootingStats(BaseModel):
26
+ """
27
+ ShootingStats
28
+ """
29
+ made: StrictInt = Field(...)
30
+ attempted: StrictInt = Field(...)
31
+ pct: Union[StrictFloat, StrictInt] = Field(...)
32
+ __properties = ["made", "attempted", "pct"]
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) -> ShootingStats:
49
+ """Create an instance of ShootingStats 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
+ return _dict
59
+
60
+ @classmethod
61
+ def from_dict(cls, obj: dict) -> ShootingStats:
62
+ """Create an instance of ShootingStats from a dict"""
63
+ if obj is None:
64
+ return None
65
+
66
+ if not isinstance(obj, dict):
67
+ return ShootingStats.parse_obj(obj)
68
+
69
+ _obj = ShootingStats.parse_obj({
70
+ "made": obj.get("made"),
71
+ "attempted": obj.get("attempted"),
72
+ "pct": obj.get("pct")
73
+ })
74
+ return _obj
75
+
76
+
cbbd/models/shot_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.17.1
8
+ The version of the OpenAPI document: 1.18.1
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.17.1
8
+ The version of the OpenAPI document: 1.18.1
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.17.1
8
+ The version of the OpenAPI document: 1.18.1
9
9
  Contact: admin@collegefootballdata.com
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
cbbd/models/srs_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.17.1
8
+ The version of the OpenAPI document: 1.18.1
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.17.1
8
+ The version of the OpenAPI document: 1.18.1
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.17.1
8
+ The version of the OpenAPI document: 1.18.1
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.17.1
8
+ The version of the OpenAPI document: 1.18.1
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.17.1
8
+ The version of the OpenAPI document: 1.18.1
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.17.1
8
+ The version of the OpenAPI document: 1.18.1
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.17.1
8
+ The version of the OpenAPI document: 1.18.1
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.17.1
8
+ The version of the OpenAPI document: 1.18.1
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.17.1
8
+ The version of the OpenAPI document: 1.18.1
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.17.1
8
+ The version of the OpenAPI document: 1.18.1
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.17.1
8
+ The version of the OpenAPI document: 1.18.1
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.17.1
8
+ The version of the OpenAPI document: 1.18.1
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.17.1
8
+ The version of the OpenAPI document: 1.18.1
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.17.1
8
+ The version of the OpenAPI document: 1.18.1
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.17.1
8
+ The version of the OpenAPI document: 1.18.1
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.17.1
3
+ Version: 1.18.1
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,80 @@
1
+ cbbd/__init__.py,sha256=MO4rkSUg_vOUV2sSHpGhqUZx9hmEz5C78TShEVxrF0s,4951
2
+ cbbd/api_client.py,sha256=KmT_hpybAzq3DKJrxt8husBPvJBgrfG1dRk12Lc0zEM,29903
3
+ cbbd/api_response.py,sha256=uCehWdXXDnAO2HAHGKe0SgpQ_mJiGDbcu-BHDF3n_IM,852
4
+ cbbd/configuration.py,sha256=vTwG1qJOQLCdNoTFEaHIJAIVfSGl960aAcQzV3WkI5w,14799
5
+ cbbd/exceptions.py,sha256=-5hCAuwYLEzOdlugcsk5qz5TIxuOBKs9yC-0ExX6m3c,5546
6
+ cbbd/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
7
+ cbbd/rest.py,sha256=lsVK2FfZE0BI_3ovVywtMDmZiUa0rv31812_uQTNRYw,14163
8
+ cbbd/api/__init__.py,sha256=BG9pqmB2-l6ByYSh1FXjVHzeEqmvxQgr_MWR1z2NKrg,566
9
+ cbbd/api/conferences_api.py,sha256=TDNZry1As_KQl76D3mT1A_cquDv1LradLewk3VQFqag,13079
10
+ cbbd/api/draft_api.py,sha256=ytUWmlPBMHxklUqjYsemsIpF7vPKHpftVmEKx4jz8sM,20209
11
+ cbbd/api/games_api.py,sha256=ZmbMNNwVMPrEkMaT8rxrtUDmCQjHSn1HGGcvPgRonWo,41195
12
+ cbbd/api/lines_api.py,sha256=p47SuKbBastDVUkiv9iKkMqbe3bpxH63RaaSEk6BQsE,15757
13
+ cbbd/api/lineups_api.py,sha256=gYXEmFNCw4cn7JQGnHdYOkdqaOMVtZGy_KdhUaWoBhE,15748
14
+ cbbd/api/plays_api.py,sha256=WS4gJOHC9bxPHnNa-cSoGx15hOOlNNUDOnDEzgyexqw,54890
15
+ cbbd/api/rankings_api.py,sha256=zwehkXj4tmFULkBTZQI8gbj3iKxqasJMmKL8j_CSbHA,10005
16
+ cbbd/api/ratings_api.py,sha256=dqQrYQm2KT4sUa9H_hDUBRPNIIfXMm3xogRg7-WcvgA,15679
17
+ cbbd/api/recruiting_api.py,sha256=OD05IfMzUwFYhnoRbTDG4KUuI4xpOikQAOytU94ik10,8858
18
+ cbbd/api/stats_api.py,sha256=e3R6iVqufLvrppERxE4NuYePdYD6-lFcagPL6ajE4wE,20183
19
+ cbbd/api/teams_api.py,sha256=u6Quq90hY9B2Sos4AoZX6ApFvpqF5iN8rReEoKL1U6o,14208
20
+ cbbd/api/venues_api.py,sha256=EsG4MxJeLAR1mFxx8ICj3DJ9t5sQowcCEsUmYbOMp2w,6568
21
+ cbbd/models/__init__.py,sha256=MnQA17U4oX57c3f8UlfIPoL0TGVZoq1AbIXIvR9iu3g,3978
22
+ cbbd/models/adjusted_efficiency_info.py,sha256=Nl86UNYhZz8aLVnaj9T48OeHtiOXtWnyZEbX2uwcxZM,3370
23
+ cbbd/models/adjusted_efficiency_info_rankings.py,sha256=sJJcjn7HgL6YdBZpIPXp-jQN2KdKrQHki1aBZOpF5EA,2398
24
+ cbbd/models/conference_history.py,sha256=wGlRKYUr50s4UR7KpyuBM6TJvgW_06WoQGtLOLX0ejM,3084
25
+ cbbd/models/conference_history_teams_inner.py,sha256=sRnMidjOZ7g_X7X3NDxqGeVOAhr6SHYMm36fb4pL7C8,3130
26
+ cbbd/models/conference_info.py,sha256=RsJcmEkX7peqGDSH6oUb6Upofu5RhrTX9Qssu2B2Nqg,2437
27
+ cbbd/models/draft_pick.py,sha256=GSuD_NbLV9xwhYzEV7qa4kCFV8hru1Wydk37T2NO_CA,6572
28
+ cbbd/models/draft_position.py,sha256=FcBji-7rsXn4t4Jig6y9PfVufheVoesDuTtcNpdRCjw,2099
29
+ cbbd/models/draft_team.py,sha256=WQZDQu4OtRW8ZSWUtNSQkdvKO5rYrrQrGyDCo99f1AU,2558
30
+ cbbd/models/game_box_score_players.py,sha256=Xgiaz32kW6rzSyGHd5DRt-SbhlLT7jFOfnrmA179g1w,6356
31
+ cbbd/models/game_box_score_players_players_inner.py,sha256=ZKwHGk4BJP23596IYMClMV8UaH9oFizznMlfvTdmTJA,12093
32
+ cbbd/models/game_box_score_team.py,sha256=FvIRx1dXw8aOLRSdXlTZY7d7FzBk7gaPvbvVnfJiGaQ,6527
33
+ cbbd/models/game_box_score_team_stats.py,sha256=u5NNvhueqhjqcTfo7A5rSLm1unKGS629ppC5HqMSTV8,8687
34
+ cbbd/models/game_box_score_team_stats_points.py,sha256=7-nwF9rhjzt64T91OGpCQI6q9FWG-2DQZCXR_PMqDFE,4298
35
+ cbbd/models/game_info.py,sha256=YfMTLYjWtwZCFMo_brjeaAnrYHHUgZ8PBxzaRBxXmVA,9986
36
+ cbbd/models/game_line_info.py,sha256=DdFB_nJxOl-kEc1NRa-ARp7P_AxlkHrJgXzou_ii7bw,4371
37
+ cbbd/models/game_lines.py,sha256=smqbXlCAIjigNfCiygudxsGTRTOKldD4UZ58v9FoH1c,5077
38
+ cbbd/models/game_media_info.py,sha256=OGkspf4Ls6vqhmBt5PU9c82uzSdskNtLdjv7M_OU6BU,5672
39
+ cbbd/models/game_media_info_broadcasts_inner.py,sha256=NHIzBW9TNJ-x6m4CtcGd3NT44r2hFLHjd6qA_lDBwdQ,2325
40
+ cbbd/models/game_status.py,sha256=6oZWEBmQQ-yGk-YJyI87UuJsMLBBDFwPeGOATQoCQcI,949
41
+ cbbd/models/line_provider_info.py,sha256=tCzHyOSXextU1gBn6nTOIpZy8OtL97u_UJed0jC4Ar4,2094
42
+ cbbd/models/lineup_stats.py,sha256=3mIFpOyR9J2ZcNSqe5FD5ErWD6NyB0i2RGMvcEG2Fn4,4575
43
+ cbbd/models/lineup_unit_stats.py,sha256=ajDv2I3rDrKRkvffq_bXdSs2_vTMAtl7g3D0L61ReRY,5271
44
+ cbbd/models/lineup_unit_stats_four_factors.py,sha256=PuNAIqxHMlq8gK5FrG3lYY0eRsy3IUsogOjemtALPkU,2798
45
+ cbbd/models/lineup_unit_stats_two_pointers.py,sha256=_V6PDg8HclfAhhN8Omqqxr4jgxI_aJy6BNNvKk-9ayg,3680
46
+ cbbd/models/play_info.py,sha256=cMQmfWZfC8p7clnUg00lwojqmYgAyjN1oc3eQqJ8_dg,10275
47
+ cbbd/models/play_info_on_floor_inner.py,sha256=Cg9At8bEfc__qXHlvlH-U2TFZeFq5riEss29dnIrDh4,2204
48
+ cbbd/models/play_info_participants_inner.py,sha256=R_lKRT-LcKjC1OaVi3tmDv_-RwOVdyLSKxv1BrKswbM,2166
49
+ cbbd/models/play_type_info.py,sha256=XQx8rIJUrLyzNOhYUW-sMDVeEsTIyOBs3WH5Sg5tgeQ,2062
50
+ cbbd/models/player_season_stats.py,sha256=MHOGPz7dxI_BRa3ghgqOatVy--6ksoca9rJMTvtqQHo,12542
51
+ cbbd/models/player_season_stats_win_shares.py,sha256=MR0Uzg-I_AF4Bl4GrWXRjb6S1CySL6ZPPYAPxdQllPk,3443
52
+ cbbd/models/player_subsititution.py,sha256=95FJmFE7RNrVNWLwRTTafe2XQhv148qnxhKFEAhpQ3Q,4786
53
+ cbbd/models/player_subsititution_sub_in.py,sha256=xFO7nhynnJahgs17FxqU2ZBIseNu1fw3GTeERquhaJ4,2531
54
+ cbbd/models/poll_team_info.py,sha256=RL1MPPoOLx2-JNXLB5xU_Y8p9-mk2POns0Lg8I3YPRo,4422
55
+ cbbd/models/recruit.py,sha256=to2UKlFpn1a1H8fycWE3OTl1Ga2YNxRtPycZa2WrWTs,6394
56
+ cbbd/models/recruit_committed_to.py,sha256=7hi5HAjJ84jpxT3lx4JTD5z9nQCt45KhwvgAsQgDBZc,2870
57
+ cbbd/models/recruit_hometown.py,sha256=fukYPdjpOtkf2njkD9fvrrRjifoPgG3MYXU-DYonjMU,3908
58
+ cbbd/models/season_type.py,sha256=XkgGfklKBQbhHyBLy3jlX4LrUQ7en6snRwJH1iSVgHs,895
59
+ cbbd/models/shooting_stats.py,sha256=OphHhClxhhXAPrQblSqyUdAayDj6T9W3XBx3X649BLk,2218
60
+ cbbd/models/shot_info.py,sha256=aSfgp7WaimmpqAGYoCWQbJauk8pfkQ6UHuvZLsRM5no,3638
61
+ cbbd/models/shot_info_location.py,sha256=QUXzNMNzMgwsNMANjjfw5n7F-PzI9boD7hmGMwvYd6M,2540
62
+ cbbd/models/shot_info_shooter.py,sha256=a2gxdv_lVk4t-SXdNWDZHvvY1yL85zRQra94CHTiFUU,2515
63
+ cbbd/models/srs_info.py,sha256=ruorvDgzz06VpFiMRGdfII7h0lXa5oLm9RwGZjhv7EY,2395
64
+ cbbd/models/team_info.py,sha256=UC0vX9K7KgHUnBKGJLkdoce0mCpDH8jDdTAlS5K8WjU,6666
65
+ cbbd/models/team_roster.py,sha256=2OGfX973TV_k2dx0CbWZZXNl_Bj2spUH3LVoORrsUxs,3295
66
+ cbbd/models/team_roster_player.py,sha256=BJq6LiLIwrwxM4FSAiR35a73wrlJxjWfKjBIT8CJNc8,5354
67
+ cbbd/models/team_roster_player_hometown.py,sha256=0L56-w0BSlP1Ykh3MJcb4WdHqFkX-v-KH1a3myneMlY,3980
68
+ cbbd/models/team_season_stats.py,sha256=SKwZV20M8FbyBnX25qNNlByNofobrThg77VX7ZRUBSc,4607
69
+ cbbd/models/team_season_unit_stats.py,sha256=_bvpK05GmMMFiwGVPM-3Unv9mfh0_MtnFVA6Epo1TLE,8287
70
+ cbbd/models/team_season_unit_stats_field_goals.py,sha256=3KvhB0zmjyLIhdI3pHoO7uCf7A3LkQdwULcTzv7M-Qo,3027
71
+ cbbd/models/team_season_unit_stats_fouls.py,sha256=VmBcwrNzWQPi0nu1Cyq7cjuv1sHFMUN3NFXYYsElTu4,3035
72
+ cbbd/models/team_season_unit_stats_four_factors.py,sha256=sokxeoMclwZ-zrYaaz5HJJRrTW8RiRfYyNPdhBATgqI,3884
73
+ cbbd/models/team_season_unit_stats_points.py,sha256=QPwjb-cp-8-9WVVhvv0aQq48k45Uf_vX-V99gHDa8_Q,3499
74
+ cbbd/models/team_season_unit_stats_rebounds.py,sha256=US16ft6DdP3f-VdaCQKCq8wsAVEbL3KnLzz6AG1Krbs,3067
75
+ cbbd/models/team_season_unit_stats_turnovers.py,sha256=j52XgRv48pxDvT4p8XVzM8nKz4WkxK63Nl5EWuVLC0Y,2764
76
+ cbbd/models/venue_info.py,sha256=7Q9T1IzedBaCjOp1_B9Y-SJ_8FBJZBYbm1OsU3i38H0,3332
77
+ cbbd-1.18.1.dist-info/METADATA,sha256=Ts8hYkrDfshestnyx4Q1SNYyBcvwjPJX_hc8ywGgYz0,764
78
+ cbbd-1.18.1.dist-info/WHEEL,sha256=52BFRY2Up02UkjOa29eZOS2VxUrpPORXg1pkohGGUS8,91
79
+ cbbd-1.18.1.dist-info/top_level.txt,sha256=d8efSEMxRPpV_X-2jtQvf9S-EI4HoFQpCEOZCjDxT24,5
80
+ cbbd-1.18.1.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (75.8.2)
2
+ Generator: setuptools (76.0.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5
 
@@ -1,74 +0,0 @@
1
- cbbd/__init__.py,sha256=EJ6GpHVNbl1ypiLXHd6GoRMnEfShu2vOMXSrgCof1ao,4583
2
- cbbd/api_client.py,sha256=xFru600B7dcoLbNz186_a60Oe01N-Ycv_PCyqlYEuBY,29903
3
- cbbd/api_response.py,sha256=uCehWdXXDnAO2HAHGKe0SgpQ_mJiGDbcu-BHDF3n_IM,852
4
- cbbd/configuration.py,sha256=4VshU6HXXx7UQl7XEW0xMeZzWeYhH2-SPDZh1NBIMaM,14799
5
- cbbd/exceptions.py,sha256=uAl8hwl5p-kaj7lYhRrXVAPG6NvmsSDpP8TWJ_KpMPs,5546
6
- cbbd/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
7
- cbbd/rest.py,sha256=p8jHPQmAJnXD4qy8BPCHYdXhShiK8sK2zswuhR6Occg,14163
8
- cbbd/api/__init__.py,sha256=2TdxtoR2arz7-PjkaHnd22u3bu2Fo88LUsgu6d5yY3g,522
9
- cbbd/api/conferences_api.py,sha256=PC-YLxDRh-jDwugGRsgZmbb3D4jCTE8OPtTehZaKfZE,13079
10
- cbbd/api/draft_api.py,sha256=M075Xi7HzQN3rKplrOofLQS7JxRRS4wSYS_4uQhjNH4,20209
11
- cbbd/api/games_api.py,sha256=WjSoDYxnRoKjSmzZaGBAdgHPiAhGsb6rZn-DVod_vVU,41195
12
- cbbd/api/lines_api.py,sha256=2c1ZfMO3a5wNTvjSSrlnvxoqamXk278JE89cgyIPVdY,15757
13
- cbbd/api/plays_api.py,sha256=os5WHCo-Qjd_VuCgogIh0x6nXjLyXY7NLfT36siWinU,54890
14
- cbbd/api/rankings_api.py,sha256=2LmXY5H8qyC5Up6MfBwIAHLqwax-yD-MyUjCgar1Xa8,10005
15
- cbbd/api/ratings_api.py,sha256=xyK-h-kpcUqzdoD87V2YdVPUaAOI8HxK8MDL78Cdkks,15679
16
- cbbd/api/recruiting_api.py,sha256=RHgsC4ZIELLfcDVt8TfZFfJC9Wpy1tA4jsygaLi4DD0,8858
17
- cbbd/api/stats_api.py,sha256=_9VDha8g4mmCAkqA6QbvP7_K3YJC5_RAdgdJshXFrAE,20183
18
- cbbd/api/teams_api.py,sha256=yQKEMDe6Hy48nRyN3oeHEApO7fg-7Q_Is6fiE-AxUVA,14208
19
- cbbd/api/venues_api.py,sha256=lC0ghE7dbi88St4IdpW2Ti8OedyBNho7xc2a1lgEqU0,6568
20
- cbbd/models/__init__.py,sha256=zNPCJfPz0m7oub2l78cXPcbITqh8wYS3gvB6hotvw7o,3654
21
- cbbd/models/adjusted_efficiency_info.py,sha256=oXO5o_0m_DZyFlqg-dBc68l74ehhMBLNMg66KeOnCxU,3370
22
- cbbd/models/adjusted_efficiency_info_rankings.py,sha256=18hiHu5PklDEr26mUvbw1jZTudWN78QrvQ7TeZDhSuQ,2398
23
- cbbd/models/conference_history.py,sha256=DeN5k29SO1nLoe6Xj9NXJVPODDSsw_ydRsmI519-Jek,3084
24
- cbbd/models/conference_history_teams_inner.py,sha256=sHIq8Et4U4nu-zhzechn7tFqcL6k3N2q9KLg6njf2M0,3130
25
- cbbd/models/conference_info.py,sha256=qh3_3IswUZeAs8a3pGxr9X8uNSI5Cr2ewyhF4nDQPQE,2437
26
- cbbd/models/draft_pick.py,sha256=SdJFEkgEBYRawx3qEj1oS4pxGfzJxWSjWnHz5cYVVqU,6572
27
- cbbd/models/draft_position.py,sha256=jhriaMl5sWVtRMDekUx6kU1f2aUPr_5XbqtPGh1Jhjc,2099
28
- cbbd/models/draft_team.py,sha256=aLOsMksnwDq0Zr4PsxGEzZzfdmz22-pLsMKxL4Cle3U,2558
29
- cbbd/models/game_box_score_players.py,sha256=MRXAD9sX0xWznUhXNslOhTJGqkWo1t8tvYwgtJZoYQk,6356
30
- cbbd/models/game_box_score_players_players_inner.py,sha256=9f1Ia1CR6DvMKgGJnX1tnGqZI_H5vA2rr9hT4gOrR2M,12093
31
- cbbd/models/game_box_score_team.py,sha256=VybfwoAeNe0L_DPYMTwxXAEiovimSC2X20NtwuaudJc,6527
32
- cbbd/models/game_box_score_team_stats.py,sha256=WAAGEw81yTWV4HG33f1a9_f1rbz3_-MDuGoyRXlYveI,8687
33
- cbbd/models/game_box_score_team_stats_points.py,sha256=tTQHf3zdCzn6rbGOJDq0VNeurw5fNGSwvAZex4yITko,4298
34
- cbbd/models/game_info.py,sha256=Goj4uTMgJypOyyDWh98lvhpskqZ7-0AfUtqTjrGfwGI,9986
35
- cbbd/models/game_line_info.py,sha256=_f5oIJA6rs0pkLZwy44TitOY67Ajg5LF_sCJ18pfsUo,4371
36
- cbbd/models/game_lines.py,sha256=heaUP2hW8z65IjgC9JmD9pTR0A_m4E9GPU7eQ2IRXkw,5077
37
- cbbd/models/game_media_info.py,sha256=Y-bj0dRGDXhRh0DNeFyC3E7OQKGndjUpof3ZZ2OO0L0,5672
38
- cbbd/models/game_media_info_broadcasts_inner.py,sha256=HQ-5-nJBH-shEYregyxqnTQaEt2P2w-NkPRfjN5cwU8,2325
39
- cbbd/models/game_status.py,sha256=PRiDfWVEjPJ4IpGCSiG2sHcUgvXdi2RBro0UQnMn_yI,949
40
- cbbd/models/line_provider_info.py,sha256=DeZ4-4OJFPOIcv4TSAMELlWRUkrBYKX5Fyg3WRz3GLU,2094
41
- cbbd/models/play_info.py,sha256=Setcvi6Y5F_RDLJwBaITA_GnDdOq2Dir02voOt5hwmQ,10275
42
- cbbd/models/play_info_on_floor_inner.py,sha256=E8tZVYIvxYoQx96yAvQhwVkk21RSvk1IzbGKVrS_9Gw,2204
43
- cbbd/models/play_info_participants_inner.py,sha256=aVpgor7WdBbakj-kYq55XmtT_Iy4gO6lZA45m80zGW8,2166
44
- cbbd/models/play_type_info.py,sha256=nHZG8m5UvVhgX9rBynkEE7cUYVqv1dJkMXuOVu-8wr4,2062
45
- cbbd/models/player_season_stats.py,sha256=0bSRXTgxlnL4nGanDAn7XTFwUaWkn4lJ1fO5Gl8qaXA,12542
46
- cbbd/models/player_season_stats_win_shares.py,sha256=J5VhyUZk1Ag-qX34QmUQKEs9sDAvqGjXKFogw8sHGjI,3443
47
- cbbd/models/player_subsititution.py,sha256=EbZqhpGJjH8dY8QROePoxJbX9Ech0NE6V6_sTTW4IUU,4786
48
- cbbd/models/player_subsititution_sub_in.py,sha256=YhBiCqhQxE033til0E02C0cPHGlUChBJZ1vUO1Asewc,2531
49
- cbbd/models/poll_team_info.py,sha256=O7zDYPCIwiUqPL40prahsPjzJNe-Z1PsHyeV9UG9E74,4422
50
- cbbd/models/recruit.py,sha256=4qCLSnxf_JBBWrvl8Hq76uiO2fSoHSmcBz6YempBLnw,6394
51
- cbbd/models/recruit_committed_to.py,sha256=wkRLm7aOvLLmu5Yg8yHN8dJNusgEIZ04meWRNnt0KtE,2870
52
- cbbd/models/recruit_hometown.py,sha256=J7tFWsEqpRrYZiiJlVZ5denS57lAJ84ASNnZ11NOzbo,3908
53
- cbbd/models/season_type.py,sha256=IMdzFfRxeEdP1WkCipbqqvH-72nUvV-hbhF00lZpo5w,895
54
- cbbd/models/shot_info.py,sha256=fKWwawQOwyvLDvoWpFBwNZaintkDahYKb3yyqTlK2pM,3638
55
- cbbd/models/shot_info_location.py,sha256=s74EyG2hAQt2m0MxUG2wD_61f46GU4yyNFG3-vovjfc,2540
56
- cbbd/models/shot_info_shooter.py,sha256=JssX0elYd2gwpnw9iTMFoX4zrIXIza5SeXsb8QoZlM4,2515
57
- cbbd/models/srs_info.py,sha256=tT8Fvqp2m7LTyhCit-phefb3ZqiHyNq51OyYmrAmjIY,2395
58
- cbbd/models/team_info.py,sha256=Mp2iA4Kn-9pl0-nYsxXvKXbf076JDQgHACKUkvJWU6g,6666
59
- cbbd/models/team_roster.py,sha256=C5zxiRILJP1w2LDZVWIZ9698hlvm-c_HfrntwIn8LNU,3295
60
- cbbd/models/team_roster_player.py,sha256=z9yWaDBUCdFQI768CJp9FcO2pLGdAqztQ5enh0hcrgw,5354
61
- cbbd/models/team_roster_player_hometown.py,sha256=QSb8lr4y2rOom_YSTTqkPaaK7q2g0WLKBO3549swOFU,3980
62
- cbbd/models/team_season_stats.py,sha256=unNglMlscvBQLD9RHM4QqazbX_pVnXeeuVJwk6GwhKw,4607
63
- cbbd/models/team_season_unit_stats.py,sha256=Rrvv0K2EA22DYRxg0MbLLvoO_Q68xYpFF4elOkFpSh4,8287
64
- cbbd/models/team_season_unit_stats_field_goals.py,sha256=WmxUGe_L2QjxbcGzJ5nGTLEnsCRGPgJDufN_ZenJbQQ,3027
65
- cbbd/models/team_season_unit_stats_fouls.py,sha256=1Bl4zL3wgJp8AKWVbDYX6KLbxpvpXBcjQSBYI_yM0Y0,3035
66
- cbbd/models/team_season_unit_stats_four_factors.py,sha256=7z6bWlfa2V_HiZorKz1cSjo14UsRqRv9wbKlhARqL98,3884
67
- cbbd/models/team_season_unit_stats_points.py,sha256=9Ua3J3hx4w-drXWhUKjaq8NfcHGRLTpXT5XM0w76KzE,3499
68
- cbbd/models/team_season_unit_stats_rebounds.py,sha256=IQpOMixhxjci3t8Zx0__k_sPV2H6283eho7ZcWVc0E8,3067
69
- cbbd/models/team_season_unit_stats_turnovers.py,sha256=ysQApkGFCDKJarvQL7ayRSQMyRV9D1MF9SJRuRIxhm8,2764
70
- cbbd/models/venue_info.py,sha256=RMTLmQP_Q6YwnYWHrjMLCojWyTNXK3hWKmXJG9xKWhY,3332
71
- cbbd-1.17.1.dist-info/METADATA,sha256=DWJVE7DD5sKONT5mw2AZWQXCG-4Ub-SuCHGh_UqgK30,764
72
- cbbd-1.17.1.dist-info/WHEEL,sha256=jB7zZ3N9hIM9adW7qlTAyycLYW9npaWKLRzaoVcLKcM,91
73
- cbbd-1.17.1.dist-info/top_level.txt,sha256=d8efSEMxRPpV_X-2jtQvf9S-EI4HoFQpCEOZCjDxT24,5
74
- cbbd-1.17.1.dist-info/RECORD,,