I am trying to scrape all elements(Images, Graphs, Hyper Links) of this website. But, unfortunately, the images, graphs, and hyperlinks are not scraping properly. I tried using bs4.
import requests
from bs4 import BeautifulSoup
url ='https://www.gold.org/goldhub/research/investment-update-case-gold-uk-defined-benefit-schemes'
page = requests.get(url)
soup = BeautifulSoup(page.content, 'html.parser')
lay_content = soup.find("div", {"class": "layout-content"})
In this way, the extracted contents are not getting all things. How can I do this? Thanks for reading.