I need to access a website using Urllib and then search this website for all images that are on that web page. I believe I have successfully written code to access the website, I just need to search this website now.
I will be able to create the regular expression, but I need assistance on how an image would appear in HTML format so I know how to create a regular expression to search for this image.
The code I have posted does not include the regular expression, as i have not made it yet, I just included it because. Just looking for a little guidance. Thanks for all the help!
import urllib.request
import ssl
website = 'https://www.google.com'
html = urllib.request.urlopen(website)
for line in html:
print(line)