最简单的爬虫from urllib.request import urlopen
html = urlopen("http://pythonscraping.com/pages/page1.html")
print(html.read()
2016-04-12