I'd like to scrape this table from
CodePudding user response:
If you don't care about the formatting, you can use pd.read_html
:
import pandas as pd
url = "https://www.vegasinsider.com/college-basketball/odds/las-vegas/money/"
pd.read_html(url)[7]