I am trying to do is export this table as a CSV for all 7 pages of 100 rows each within a Python script but an running into this error below the script.
import pandas as pd
dfs = pd.read_html('http://www.nhl.com/stats/player?aggregate=1&gameType=2&report=skatersummary&pos=S&reportType=game&startDate=2017-10-19&endDate=2017-10-29&filter=gamesPlayed,gte,1&sort=points,goals,assists')
df = pd.concat(dfs, ignore_index=True)
df.to_csv("1019_1029.csv", index=False)
print(df)
ValueError: No tables found matching pattern '.+'