wsba-hockey 0.1.0__tar.gz → 0.1.1__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.
- {wsba_hockey-0.1.0/src/wsba_hockey.egg-info → wsba_hockey-0.1.1}/PKG-INFO +1 -1
- {wsba_hockey-0.1.0 → wsba_hockey-0.1.1}/pyproject.toml +1 -1
- wsba_hockey-0.1.1/src/wsba_hockey/__init__.py +1 -0
- {wsba_hockey-0.1.0 → wsba_hockey-0.1.1}/src/wsba_hockey/wsba_main.py +1 -1
- {wsba_hockey-0.1.0 → wsba_hockey-0.1.1/src/wsba_hockey.egg-info}/PKG-INFO +1 -1
- {wsba_hockey-0.1.0 → wsba_hockey-0.1.1}/src/wsba_hockey.egg-info/SOURCES.txt +1 -0
- {wsba_hockey-0.1.0 → wsba_hockey-0.1.1}/LICENSE +0 -0
- {wsba_hockey-0.1.0 → wsba_hockey-0.1.1}/README.md +0 -0
- {wsba_hockey-0.1.0 → wsba_hockey-0.1.1}/setup.cfg +0 -0
- {wsba_hockey-0.1.0 → wsba_hockey-0.1.1}/src/wsba_hockey/tools/scraping.py +0 -0
- {wsba_hockey-0.1.0 → wsba_hockey-0.1.1}/src/wsba_hockey.egg-info/dependency_links.txt +0 -0
- {wsba_hockey-0.1.0 → wsba_hockey-0.1.1}/src/wsba_hockey.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: wsba_hockey
|
3
|
-
Version: 0.1.
|
3
|
+
Version: 0.1.1
|
4
4
|
Summary: WeakSide Breakout's complete Python package of access to hockey data, primairly including the scraping of National Hockey League schedule, play-by-play, and shifts information.
|
5
5
|
Author-email: Owen Singh <owenbksingh@gmail.com>
|
6
6
|
Project-URL: Homepage, https://github.com/owensingh38/wsba_hockey/
|
@@ -0,0 +1 @@
|
|
1
|
+
from wsba_hockey.wsba_main import nhl_scrape_game,nhl_scrape_schedule,nhl_scrape_season,nhl_scrape_seasons_info,nhl_scrape_standings,nhl_scrape_roster,nhl_scrape_player_info
|
@@ -2,7 +2,7 @@ import requests as rs
|
|
2
2
|
import pandas as pd
|
3
3
|
import numpy as np
|
4
4
|
from datetime import datetime, timedelta
|
5
|
-
from tools.scraping import *
|
5
|
+
from wsba_hockey.tools.scraping import *
|
6
6
|
|
7
7
|
### WSBA HOCKEY ###
|
8
8
|
## Provided below are all integral functions in the WSBA Hockey Python package. ##
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: wsba_hockey
|
3
|
-
Version: 0.1.
|
3
|
+
Version: 0.1.1
|
4
4
|
Summary: WeakSide Breakout's complete Python package of access to hockey data, primairly including the scraping of National Hockey League schedule, play-by-play, and shifts information.
|
5
5
|
Author-email: Owen Singh <owenbksingh@gmail.com>
|
6
6
|
Project-URL: Homepage, https://github.com/owensingh38/wsba_hockey/
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|