edgework 0.1.0__tar.gz
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.
- edgework-0.1.0/PKG-INFO +13 -0
- edgework-0.1.0/README.md +0 -0
- edgework-0.1.0/edgework/.cache/teams.json +34 -0
- edgework-0.1.0/edgework/NHL API Documentation.md +1461 -0
- edgework-0.1.0/edgework/__init__.py +3 -0
- edgework-0.1.0/edgework/clients/game_client.py +43 -0
- edgework-0.1.0/edgework/clients/glossary_client.py +12 -0
- edgework-0.1.0/edgework/clients/player_client.py +99 -0
- edgework-0.1.0/edgework/clients/schedule_client.py +161 -0
- edgework-0.1.0/edgework/clients/shift_client.py +13 -0
- edgework-0.1.0/edgework/clients/standings_client.py +43 -0
- edgework-0.1.0/edgework/clients/stats_client.py +175 -0
- edgework-0.1.0/edgework/clients/team_client.py +32 -0
- edgework-0.1.0/edgework/const.py +4 -0
- edgework-0.1.0/edgework/edgework.py +154 -0
- edgework-0.1.0/edgework/endpoints.py +88 -0
- edgework-0.1.0/edgework/errors.py +4 -0
- edgework-0.1.0/edgework/http_client.py +48 -0
- edgework-0.1.0/edgework/models/base.py +60 -0
- edgework-0.1.0/edgework/models/config.py +35 -0
- edgework-0.1.0/edgework/models/draft.py +116 -0
- edgework-0.1.0/edgework/models/game.py +91 -0
- edgework-0.1.0/edgework/models/game_events.py +56 -0
- edgework-0.1.0/edgework/models/glossary.py +47 -0
- edgework-0.1.0/edgework/models/player.py +311 -0
- edgework-0.1.0/edgework/models/playoffs.py +54 -0
- edgework-0.1.0/edgework/models/schedule.py +64 -0
- edgework-0.1.0/edgework/models/shift.py +144 -0
- edgework-0.1.0/edgework/models/standings.py +116 -0
- edgework-0.1.0/edgework/models/stats.py +317 -0
- edgework-0.1.0/edgework/models/team.py +75 -0
- edgework-0.1.0/edgework/utilities.py +19 -0
- edgework-0.1.0/pyproject.toml +42 -0
- edgework-0.1.0/tests/__init__.py +0 -0
- edgework-0.1.0/tests/test_draft.py +0 -0
- edgework-0.1.0/tests/test_stats.py +379 -0
edgework-0.1.0/PKG-INFO
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: edgework
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Author-Email: Mark <email@email.com>
|
|
5
|
+
Requires-Python: <4.0,>=3.11
|
|
6
|
+
Requires-Dist: yfpy<16.0.0,>=15.0.3
|
|
7
|
+
Requires-Dist: aiohttp<4.0.0,>=3.9.1
|
|
8
|
+
Requires-Dist: loguru<1.0.0,>=0.7.2
|
|
9
|
+
Requires-Dist: nhl-api-py<3.0.0,>=2.1.5
|
|
10
|
+
Requires-Dist: httpx<1.0.0,>=0.27.0
|
|
11
|
+
Requires-Dist: pydantic>=2.10.6
|
|
12
|
+
Description-Content-Type: text/markdown
|
|
13
|
+
|
edgework-0.1.0/README.md
ADDED
|
File without changes
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
[
|
|
2
|
+
{"id": "24", "abbreviation": "ANA", "name": "Anaheim Ducks"},
|
|
3
|
+
{"id": "53", "abbreviation": "ARI", "name": "Arizona Coyotes"},
|
|
4
|
+
{"id": "6", "abbreviation": "BOS", "name": "Boston Bruins"},
|
|
5
|
+
{"id": "7", "abbreviation": "BUF", "name": "Buffalo Sabres"},
|
|
6
|
+
{"id": "20", "abbreviation": "CGY", "name": "Calgary Flames"},
|
|
7
|
+
{"id": "12", "abbreviation": "CAR", "name": "Carolina Hurricanes"},
|
|
8
|
+
{"id": "16", "abbreviation": "CHI", "name": "Chicago Blackhawks"},
|
|
9
|
+
{"id": "21", "abbreviation": "COL", "name": "Colorado Avalanche"},
|
|
10
|
+
{"id": "29", "abbreviation": "CBJ", "name": "Columbus Blue Jackets"},
|
|
11
|
+
{"id": "25", "abbreviation": "DAL", "name": "Dallas Stars"},
|
|
12
|
+
{"id": "17", "abbreviation": "DET", "name": "Detroit Red Wings"},
|
|
13
|
+
{"id": "22", "abbreviation": "EDM", "name": "Edmonton Oilers"},
|
|
14
|
+
{"id": "13", "abbreviation": "FLA", "name": "Florida Panthers"},
|
|
15
|
+
{"id": "26", "abbreviation": "LAK", "name": "Los Angeles Kings"},
|
|
16
|
+
{"id": "30", "abbreviation": "MIN", "name": "Minnesota Wild"},
|
|
17
|
+
{"id": "8", "abbreviation": "MTL", "name": "Montreal Canadiens"},
|
|
18
|
+
{"id": "18", "abbreviation": "NSH", "name": "Nashville Predators"},
|
|
19
|
+
{"id": "1", "abbreviation": "NJD", "name": "New Jersey Devils"},
|
|
20
|
+
{"id": "2", "abbreviation": "NYI", "name": "New York Islanders"},
|
|
21
|
+
{"id": "3", "abbreviation": "NYR", "name": "New York Rangers"},
|
|
22
|
+
{"id": "9", "abbreviation": "OTT", "name": "Ottawa Senators"},
|
|
23
|
+
{"id": "4", "abbreviation": "PHI", "name": "Philadelphia Flyers"},
|
|
24
|
+
{"id": "5", "abbreviation": "PIT", "name": "Pittsburgh Penguins"},
|
|
25
|
+
{"id": "28", "abbreviation": "SJS", "name": "San Jose Sharks"},
|
|
26
|
+
{"id": "55", "abbreviation": "SEA", "name": "Seattle Kraken"},
|
|
27
|
+
{"id": "19", "abbreviation": "STL", "name": "St. Louis Blues"},
|
|
28
|
+
{"id": "14", "abbreviation": "TBL", "name": "Tampa Bay Lightning"},
|
|
29
|
+
{"id": "10", "abbreviation": "TOR", "name": "Toronto Maple Leafs"},
|
|
30
|
+
{"id": "23", "abbreviation": "VAN", "name": "Vancouver Canucks"},
|
|
31
|
+
{"id": "54", "abbreviation": "VGK", "name": "Vegas Golden Knights"},
|
|
32
|
+
{"id": "15", "abbreviation": "WSH", "name": "Washington Capitals"},
|
|
33
|
+
{"id": "52", "abbreviation": "WPG", "name": "Winnipeg Jets"},
|
|
34
|
+
]
|