Could someone show me how to get a list of aboslute paths for all the images in a webpage using BeautifulSoup?
It's simple to get all the images. I'm doing this:
page_images = [image["src"] for image in soup.findAll("img")]
...but I'm having difficulties getting the absolute paths. Any help?
Thank you.