An asynchronous Python wrapper for the un-official NHL APIs.
Project description
NHL API Python Wrapper
An asynchronous Python wrapper for the official (but undocumented) NHL APIs:
api-web.nhle.com and api.nhle.com/stats/rest.
Note: This library interacts with APIs that are not officially documented or supported by the NHL. Use at your own risk. API changes may break this library without notice.
Features
- Async Python wrapper for both the NHL Web API (
api-web.nhle.com) and Stats API (api.nhle.com/stats/rest). - Two main clients:
NHLWebClient: For web endpoints (players, teams, schedule, games, playoffs, drafts, misc, other web).NHLStatsClient: For stats endpoints (players, teams, draft, season, game, misc).
- Easy-to-use endpoint categories as attributes (e.g.,
client.players,client.teams). - Custom exception handling for API errors.
Installation
pip install git+https://github.com/brrainey13/nhl-api.git # Or clone and pip install .
Or for development:
git clone https://github.com/brrainey13/nhl-api.git
cd nhl-api
pip install -e .
Basic Usage (api-web.nhle.com)
import asyncio
from nhl_api import NHLWebClient
from nhl_api.exceptions import NHLAPIError
async def main():
async with NHLWebClient() as client:
try:
# Get player landing info (Auston Matthews)
player_info = await client.players.get_landing(player_id=8477934)
print(f"Player: {player_info['firstName']['default']} {player_info['lastName']['default']}")
print(f"Team: {player_info['currentTeamAbbrev']}")
print(f"Position: {player_info['position']}")
# Get today's standings
standings = await client.teams.get_standings_now()
print(f"\nStandings Date: {standings['standingsDate']}")
# Get game log for Connor McDavid, 2023-2024 Regular Season
game_log = await client.players.get_game_log(
player_id=8478402,
season=20232024,
game_type=2 # 2=Regular Season, 3=Playoffs
)
print(f"\nMcDavid Game Log (First 5 Games):")
for game in game_log['gameLog'][:5]:
print(f" Date: {game['gameDate']}, Opp: {game['opponentAbbrev']}, G: {game['goals']}, A: {game['assists']}")
# Get schedule for a specific date
schedule = await client.schedule.get_schedule_by_date(date="2023-11-10")
print(f"\nSchedule for 2023-11-10:")
for date_info in schedule['gameWeek']:
if date_info['date'] == "2023-11-10":
for game in date_info['games']:
print(f" {game['awayTeam']['abbrev']} @ {game['homeTeam']['abbrev']} ({game['gameTypeDescription']}) - State: {game['gameState']}")
except NHLAPIError as e:
print(f"API Error: Status={e.status_code}, Message={e.message}")
except Exception as e:
print(f"An unexpected error occurred: {e}")
if __name__ == "__main__":
asyncio.run(main())
## Basic Usage (api.nhle.com/stats/rest)
```python
import asyncio
from nhl_api import NHLStatsClient
async def main():
async with NHLStatsClient() as stats_client:
# Get skater points leaders
leaders = await stats_client.players.get_skater_leaders("points")
print("Top points leader:", leaders['data'][0]['player']['fullName'])
# Get team stats
team_stats = await stats_client.teams.get_team_stats(team_id=10)
print("Team stats:", team_stats)
if __name__ == "__main__":
asyncio.run(main())
## Endpoint Categories
**NHLWebClient**
- `players`: Player info, stats, game logs, bios, etc.
- `teams`: Team info, rosters, standings.
- `schedule`: Schedules, calendar.
- `game`: Game scores, events, boxscores.
- `playoff`: Playoff info.
- `draft`: Draft info.
- `misc`: Miscellaneous endpoints.
- `other_web`: Other endpoints (season, where to watch, odds, etc.)
**NHLStatsClient**
- `players`: Stats leaders, skater/goalie stats, bios.
- `teams`: Team stats, franchise info.
- `draft`: Draft picks, history.
- `season`: Season info.
- `game`: Game stats, summaries.
- `misc`: Miscellaneous endpoints.
## Error Handling
All API errors raise `NHLAPIError` or a subclass. Example:
```python
from nhl_api.exceptions import NHLAPIError
try:
... # API call
except NHLAPIError as e:
print(f"API Error: Status={e.status_code}, Message={e.message}")
Requirements
- Python 3.8+
httpx(seerequirements-dev.txtfor dev dependencies)
Further Documentation
- See
nhl_api.mdfor detailed endpoint and usage documentation. - The code is documented with docstrings.
Contributing
Pull requests and issues are welcome! Please open an issue for bugs or feature requests.
Disclaimer: This project is not affiliated with or endorsed by the NHL. The APIs are undocumented and may change or break without notice.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file nhlapi_tools-0.1.0.tar.gz.
File metadata
- Download URL: nhlapi_tools-0.1.0.tar.gz
- Upload date:
- Size: 15.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5290c6e14f3b170a0463c4355ec62c75a1a898f50eee583b96bcdbfbbccb7950
|
|
| MD5 |
e77057f06d5d1d6a6483c17d657f22fa
|
|
| BLAKE2b-256 |
34e4f8f3ba03654a0be170e517fb510f32cf16a28de1bfaf035227ced6fc10ca
|
File details
Details for the file nhlapi_tools-0.1.0-py3-none-any.whl.
File metadata
- Download URL: nhlapi_tools-0.1.0-py3-none-any.whl
- Upload date:
- Size: 19.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8d48225927c5770815b9063c706c2b7ae966fa0b3d137761db3d0000a10527af
|
|
| MD5 |
59f18299245d8754b9be974b48bf25b9
|
|
| BLAKE2b-256 |
640bcb0f05d6a9caddda48fa7018840e0410b74837d5614041f8a160bb09cea8
|