wsba-hockey 0.1.4__tar.gz → 1.0.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.
- {wsba_hockey-0.1.4/src/wsba_hockey.egg-info → wsba_hockey-1.0.0}/PKG-INFO +1 -1
- {wsba_hockey-0.1.4 → wsba_hockey-1.0.0}/pyproject.toml +1 -1
- wsba_hockey-1.0.0/src/wsba_hockey/__init__.py +1 -0
- {wsba_hockey-0.1.4 → wsba_hockey-1.0.0}/src/wsba_hockey/tools/agg.py +1 -1
- {wsba_hockey-0.1.4 → wsba_hockey-1.0.0}/src/wsba_hockey/tools/plotting.py +1 -1
- {wsba_hockey-0.1.4 → wsba_hockey-1.0.0}/src/wsba_hockey/tools/scraping.py +1 -1
- {wsba_hockey-0.1.4 → wsba_hockey-1.0.0}/src/wsba_hockey/wsba_main.py +4 -4
- {wsba_hockey-0.1.4 → wsba_hockey-1.0.0/src/wsba_hockey.egg-info}/PKG-INFO +1 -1
- wsba_hockey-0.1.4/src/wsba_hockey/__init__.py +0 -1
- {wsba_hockey-0.1.4 → wsba_hockey-1.0.0}/LICENSE +0 -0
- {wsba_hockey-0.1.4 → wsba_hockey-1.0.0}/README.md +0 -0
- {wsba_hockey-0.1.4 → wsba_hockey-1.0.0}/setup.cfg +0 -0
- {wsba_hockey-0.1.4 → wsba_hockey-1.0.0}/src/wsba_hockey/stats/calculate_viz/shot_impact.py +0 -0
- {wsba_hockey-0.1.4 → wsba_hockey-1.0.0}/src/wsba_hockey/tools/__init__.py +0 -0
- {wsba_hockey-0.1.4 → wsba_hockey-1.0.0}/src/wsba_hockey/tools/archive/old_scraping.py +0 -0
- {wsba_hockey-0.1.4 → wsba_hockey-1.0.0}/src/wsba_hockey/tools/utils/__init__.py +0 -0
- {wsba_hockey-0.1.4 → wsba_hockey-1.0.0}/src/wsba_hockey/tools/utils/config.py +0 -0
- {wsba_hockey-0.1.4 → wsba_hockey-1.0.0}/src/wsba_hockey/tools/utils/save_pages.py +0 -0
- {wsba_hockey-0.1.4 → wsba_hockey-1.0.0}/src/wsba_hockey/tools/utils/shared.py +0 -0
- {wsba_hockey-0.1.4 → wsba_hockey-1.0.0}/src/wsba_hockey/tools/xg_model.py +0 -0
- {wsba_hockey-0.1.4 → wsba_hockey-1.0.0}/src/wsba_hockey.egg-info/SOURCES.txt +0 -0
- {wsba_hockey-0.1.4 → wsba_hockey-1.0.0}/src/wsba_hockey.egg-info/dependency_links.txt +0 -0
- {wsba_hockey-0.1.4 → wsba_hockey-1.0.0}/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.
|
3
|
+
Version: 1.0.0
|
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_main import nhl_scrape_game,nhl_scrape_schedule,nhl_scrape_season,nhl_scrape_seasons_info,nhl_scrape_standings,nhl_scrape_roster,nhl_scrape_draft_rankings,nhl_scrape_prospects,nhl_calculate_stats,nhl_shooting_impacts,nhl_plot_skaters_shots,nhl_plot_games,repo_load_rosters,repo_load_schedule,repo_load_teaminfo,repo_load_pbp,repo_load_seasons
|
@@ -5,7 +5,7 @@ import pandas as pd
|
|
5
5
|
pd.options.mode.chained_assignment = None
|
6
6
|
from scipy.interpolate import griddata
|
7
7
|
from scipy.ndimage import gaussian_filter
|
8
|
-
from
|
8
|
+
from .xg_model import *
|
9
9
|
from hockey_rink import NHLRink
|
10
10
|
from hockey_rink import CircularImage
|
11
11
|
|
@@ -4,10 +4,10 @@ import numpy as np
|
|
4
4
|
from datetime import datetime, timedelta, date
|
5
5
|
import time
|
6
6
|
import random
|
7
|
-
from tools.scraping import *
|
8
|
-
from tools.xg_model import *
|
9
|
-
from tools.agg import *
|
10
|
-
from tools.plotting import *
|
7
|
+
from .tools.scraping import *
|
8
|
+
from .tools.xg_model import *
|
9
|
+
from .tools.agg import *
|
10
|
+
from .tools.plotting import *
|
11
11
|
|
12
12
|
### WSBA HOCKEY ###
|
13
13
|
## 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.
|
3
|
+
Version: 1.0.0
|
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/
|
@@ -1 +0,0 @@
|
|
1
|
-
from wsba_main import nhl_scrape_game,nhl_scrape_schedule,nhl_scrape_season,nhl_scrape_seasons_info,nhl_scrape_standings,nhl_scrape_roster,nhl_scrape_draft_rankings,nhl_scrape_prospects,nhl_calculate_stats,nhl_shooting_impacts,nhl_plot_skaters_shots,nhl_plot_games,repo_load_rosters,repo_load_schedule,repo_load_teaminfo,repo_load_pbp,repo_load_seasons
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|