Answer the question
In order to leave comments, you need to log in
Why doesn't bs4 parse images?
There is html
<div data-name="Carousel">
<img>
<img>
<img>
<img>
...
</div>
images = soup.find(name="div", attrs={"data-name": "Carousel"}).find_all(name="img")
Answer the question
In order to leave comments, you need to log in
Perhaps the image on the client is loaded via ajax. In this case, it is better to get the page code through Selenium
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question