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
For Python 3 you will need to import import urllib.request:
import urllib.request
import urllib.request urllib.request.urlretrieve(url, filename)
for more info check out the link