There are lots of helpful questions and answers regarding BeautifulSoup table parsing, however the issue I am running into is that I cannot find the data I'm looking for when I prettify the soup.
I'm looking to turn commodity prices into a pandas dataframe. My code (so far) is below:
from urllib.request import urlopen
from bs4 import BeautifulSoup
page = urlopen('http://futures.tradingcharts.com/marketquotes/HE.html')
soup = BeautifulSoup(page, 'html.parser')
print (soup.prettify())
I've looked at the BeautifulSoup documentation, and I may be missing something, however I've combed through what my console prints out, and I cannot even find the 'Open', 'High', etc. prices in the prettified version of the html. Therefore, I can't figure out how to search for the appropriate tags within the html.
Please advise - thank you for your help.