Short answer (simplified). To get one file
import urllib.request
urllib.request.urlretrieve("http://google.com/index.html", filename="local/index.html")
You can figure out how to loop that if necessary.
Short answer (simplified). To get one file
import urllib.request
urllib.request.urlretrieve("http://google.com/index.html", filename="local/index.html")
You can figure out how to loop that if necessary.