I am trying to scrape the contents from the table on this website https://www.corelogic.com.au/our-data/recent-sales?postcode=3056
When I inspect the page I can see all the columns and rows in the html code but when I try to find the table using BeautifulSoup it comes up with "None"
import pandas as pd
import requests
from bs4 import BeautifulSoup
url = "https://www.corelogic.com.au/our-data/recent-sales?postcode=3056"
page = requests.get(url)
soup = BeautifulSoup(page.text, 'html')
table = soup.find("table")
print(table)
Output: None