I'm trying to get the table from this link: https://www.nba.com/standings?GroupBy=conf&Season=2019-20&Section=overall
url = 'https://www.nba.com/standings?GroupBy=conf&Season=2019-20&Section=overall'
page = requests.get(url)
soup = BeautifulSoup(page.content, 'html.parser')
soup.find_all('table')
However, I get an empty list returned. I looked in the html for the website,a nd I can see tha table tags. What am I missing to pull these tables?