I'm trying to parse the "Per Game" table from https://www.basketball-reference.com/teams/GSW/2017.html, but can't get the table I want.
Here's my code:
r = requests.get('https://www.basketball-reference.com/teams/GSW/2017.html')
soup = BeautifulSoup(r.text, 'html')
soup.find('table', attrs={"id":"per_game"})
It just return nothing......