I am trying to web scrape using beautifulsoup the first and second tags (-130, and +110) in this single HTML div (as seen below): example HTML
However I can not figure out how to scrape the second tag, can only scrape the first. Thank you.
from urllib.request import urlopen as uReq
from bs4 import BeautifulSoup as soup
day = "09"
month = "10"
year = "2017"
my_url = 'https://www.sportsbookreview.com/betting-odds/mlb-baseball/?date=' + year + month + day
# Opening up the connection and grabbing the page
uClient = uReq(my_url)
page_html = uClient.read()
uClient.close()
# html parser
page_soup = soup(page_html, "html.parser")
allBovadaOdds = page_soup.find_all("div", {"rel": "999996"})
firstOdds = allBovadaOdds[1].b.string
print(firstOdds)