If you’re on Python, `requests-html` is underrated. It’s like `requests` but with built-in parsing and JS support.
```python
from requests_html import HTMLSession
session = HTMLSession()
r = session.get('https://example.com')
r.html.render() # Executes JS
images = r.html.find('img')
```
Way easier than dealing with Selenium for basic how to webscrape images from html needs.
```python
from requests_html import HTMLSession
session = HTMLSession()
r = session.get('https://example.com')
r.html.render() # Executes JS
images = r.html.find('img')
```
Way easier than dealing with Selenium for basic how to webscrape images from html needs.
