标签:
1 import urllib.request 2 import time 3 response=urllib.request.urlopen("http://www.fishc.com/") 4 html=response.read() 5 html=html.decode(‘utf-8‘) 6 print(html) 7 time.sleep(20)
爬虫详解
原文地址:http://www.cnblogs.com/A-FM/p/5687248.html