I am trying to run the following code but I keep returning "none". The website I am trying to scrape is dsd.tools.
URL = 'https://dsd.tools/'
page = requests.get(URL)
soup = BeautifulSoup(page.content, 'html.parser')
title = soup.find("div", {"class": "content"})
print(title)
It should be simple enough but for some reason I am not able to return the "TWAP price". Let me know what you all think.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…