I'm kinda new to python but I'm trying to make a web scraper script where it downloads all the pictures on a website. I'm using requests and PyQuery since many people recommended it after some research. This is all I have right now and I'm not sure where to go.
r = requests.get("some url")
images = pq(r.text)
for image in images.find("img"):
I know that I need to get the source of the img but how do I do that after finding the img tags? Also, I've viewed the page source of some htmls and some pictures are stored on their database so the src starts with "/"some extension" so I was wondering how I would be able to get the full url.