import urllib2
req =urllib2.Request('http://...........')
reaponse = urllib2.urlopen(req)
with open('D:/test.html','wb') as f:
f.write(response.read())
f.close()
import urllib2
req =urllib2.Request('http://...........')
reaponse = urllib2.urlopen(req)
with open('D:/test.html','wb') as f:
f.write(response.read())
f.close()