I am trying to scrape the table on this website (https://www.cmegroup.com/markets/fx/g10/canadian-dollar.settlements.html). I tried using the requests library, pandas, and selenium, but to no avail. Does anyone have a workaround? Here is some of the things I have tried so far:
import requests
url = "https://www.cmegroup.com/markets/fx/g10/canadian-dollar.settlements.html"
requests.get(url)
import pandas as pd
url = "https://www.cmegroup.com/markets/fx/g10/canadian-dollar.settlements.html"
df = pd.read_html(url)
from selenium import webdriver
import pandas as pd
url = 'https://www.cmegroup.com/markets/fx/g10/canadian-dollar.settlements.html'
driver = webdriver.Edge()
driver.get(url)
table = driver.find_element("xpath",'//*[@id="productTable1"]')
df = pd.read_html(table.get_attribute('outerHTML'))[0]
driver.quit()
Thanks!!
For
requests
Adding the 'User-Agent' on the
headers
works!For
pandas
2.1+Use
storage_options=headers