Appearance
爬取网站记录,效率是自己写记录的百倍。
import urllib.request url = '...' response = urllib.request.urlopen(url) html = response.read() print(html)