So I\'m trying to make a Python script that downloads webcomics and puts them in a folder on my desktop. I\'ve found a few similar programs on here that do something simila
Python 3 version of @DiGMi's answer:
from urllib import request f = open('00000001.jpg', 'wb') f.write(request.urlopen("http://www.gunnerkrigg.com/comics/00000001.jpg").read()) f.close()