Home > Mobile >  Webscraping a table from VegasInsider
Webscraping a table from VegasInsider

Time:02-21

I'd like to scrape this table from enter image description here

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]
  • Related