Metadata-Version: 2.4
Name: crunch-the-stats-scraper
Version: 0.1.7
Summary: This package serves as a wrapper for the public NHL api endpoints, allowing people to use call function methods to get NHL data.
Requires-Python: >=3.12
Description-Content-Type: text/markdown
Requires-Dist: requests>=2.34.2

# Crunch The Stats Scraper
### by Carter Hemrick


## What is this Package?
This package serves as a wrapper, for NHL data apis available. Cutting the request portion out, and giving users the ability to call any api endpoint via a method.

## API Endpoints
```bash
https://api-web.nhle.com/v1/
```
```bash
https://records.nhl.com/
```
```bash
https://api.nhle.com/stats/rest/
```

## How to Use?

```bash
from crunch_the_cap_scraper.nhl_client import NHLAPIClient


client = NHLAPIClient()

```

## Methods
client.fetch_all_franchises()
RETURNS: 


client.fetch_coach_tenures()


client.fetch_play_by_play(game_id)
returns the event data  for a game based off game_id
includes x, y coords for goals, hits, blocks etc

